@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-items: center;
  align-items: flex-start;
  background: #202124;
  margin: 0;
}

#body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  padding-top: 30px;
}

#structure {
  display: flex;
  flex-direction: column;
  padding: 0px 5px;
  max-width: 650px;
  width: 100%;
}

#logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 24px;

  flex: none;
  order: 0;
  flex-grow: 1;
}

#trace {
  width: 1px;
  height: 16px;
  background: #364563;
  margin-top: 4%;

  flex: none;
  order: 1;
  flex-grow: 0;
}


#title-text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  margin-top: 25px;

  color: #F2F2F3;

  order: 2;
  flex-grow: 0;
}

.container {
  padding: 24px;
  max-width: 100%;
  background: #1E262D;
  border-radius: 16px;
}

#text-title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;

  color: #F2F2F3;

  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.request-input {
  box-sizing: border-box;
  padding: 18px;
  width: 100%;

  border-radius: 8px;
  border: 1px solid #364563;
  background: #1E262D;
  color: #F2F2F3;
}

.fail-input {
  border: 1px solid #CF0E0E;
  background: #1E262D;
  color: #F2F2F3;
}

#response-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;

  flex: none;
  order: 3;
  align-self: stretch;
  flex-grow: 0;
}

.buttons-response {
  box-sizing: border-box;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;

  background: #1E262D;
  color: #4789EB;

  border: 2px solid #4789EB;
  border-radius: 8px;

  flex: 1;
}

.buttons-os-null {
  background: #1E262D;
  color: #CF0E0E;
  border: 2px solid #CF0E0E;
}

.selected-buttons-os {
  background: #4789EB;
  color: #F2F2F3;
}

#text-message {
  display: flex;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  justify-content: center;
  width: 100%;

  color: #F2F2F3;

  flex: none;
  order: 0;
  flex-grow: 0;
}

.div-button-send {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  margin-top: 25px;
}

.button-send {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 90px;

  background: #4789EB;
  border: none;
  border-radius: 48px;
  cursor: pointer;
  color: black;
}

#text-complet {
  width: 100%;
  height: 36px;

  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;

  color: #F2F2F3;

  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

#message-complet {
  width: 100%;
  height: 48px;

  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  padding-bottom: 10px;

  color: #93979F;

  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  flex-grow: 0;
}

#complet-bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

#bottom-complet {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;

  background: #4789EB;
  border: none;
  border-radius: 48px;
  color: #F2F2F3;

  flex: none;
  order: 0;
  flex-grow: 0;
}

@media (max-width: 1200px){
  .text-message {

    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;

    margin: 0;
    color: #F2F2F3;
    width: 100%;
  }
}

@media(max-width: 425px) {
  #logo {
    gap: 5%;
  }
}
