h2 {
  color: #1b325f;
  font-family: "KorolevBold", Sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.signup-container {
  width: 90%;
  padding-inline: 2rem;
  margin-block: 4rem;
}

.whitebox {
  display: flex;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  padding: 2rem;
  margin-block: 1rem;
}

.whitebox form {
  width: 100%;
  height: 100%;
  border-radius: 40px;
}

.whitebox form .form-control {
  width: 100%;
  height: 50px;
  background: white;
  margin: 10px 0 18px 0;
  padding: 0 10px;
  border: 1px solid #cfcfe8;
  background-clip: padding-box;
  outline: 0;

  font-family: "RobotoCondensed", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  background-color: #fff;

  display: flex;
  flex-direction: column;
}

label {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1b325f;
  background-color: #fff;
}

.btn-signup {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  background-color: #1b325f;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: none;
  margin-block: 1rem;
}

.btn-signup:hover {
  background-color: #7b1222;
  cursor: pointer;
}

.have-account {
  margin-inline: auto;
  margin-left: auto;
  display: flex;
  justify-content: start;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1b325f;
}

.red-link {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: #b53253;
  text-decoration: none;
  margin-left: auto;
}

.red-link:hover {
  color: #0693e3;
}

.password-container {
  position: relative;
  display: flex;
}

.error-message {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 17px;
  color: red;
}

.phone-wrapper {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.phone-wrapper select {
  flex: 0 0 auto;
  width: 100%;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}

.phone-wrapper input {
  flex: 1;
  min-width: 0;
}

.phone-wrapper select,
.phone-wrapper input {
  margin: 10px 0 18px 0;
  padding: 8px;
  font-size: 16px;
  outline: 0;
  height: 50px;
  border: 1px solid #cfcfe8;
  font-family: "RobotoCondensed", Sans-serif;
}

@media (max-width: 480px) {
  .phone-wrapper {
    flex-direction: column;
    gap: 0px;
  }

  .phone-wrapper select,
  .phone-wrapper input {
    width: 100%;
    max-width: none;
  }

  .phone-wrapper input {
    flex: auto;
    min-width: 0;
  }

  .whitebox form .form-control {
    margin: 10px 0 10px 0;
  }
}
