@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600&display=swap");

.empty_background {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  margin-top: 50px;
}

.password_flex {
  display: flex;
  flex-direction: column;
  background: lightgray;
  border-radius: 10px;
  margin-bottom: 50px;
  padding: 50px;
}
.error_text {
  color: red;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

#team_program{
    background-color: black;;
}
.password_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 50px;
}

.password_page_logos {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.password_page_logos img {
  width: 225px;
}

.password_form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.login_button {
  border-style: solid;
  width: 220px;
  border: 1px solid white;
  background-color: #fa5000;
  color: white;
  text-align: center;
  text-decoration: none;
  line-height: 2.5em;
  background-image: none;
  letter-spacing: 4px;
}
.login_button:hover {
  background-color: black;
}

.login_grey_text {
  color: rgb(126, 140, 141);
}

.login_orange_text {
  color: #fa5000;
  font-size: 16px;
}

.input_flex{
  display: flex;
  flex-direction: row;
  gap: 20px;  
  align-items: center;
}
.input_flex label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.input_flex input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}
.input_flex input:focus {
  border-color: #fa5000;
  outline: none;
}

.activation_page {
  min-height: 100vh;
  margin-top: 0;
  padding: 10px 20px 80px;
  background:
    radial-gradient(circle at 15% 20%, rgba(250, 80, 0, 0.12), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(20, 20, 20, 0.12), transparent 40%),
    linear-gradient(120deg, #f7f4f1 0%, #f2f6f7 55%, #f9f2ec 100%);
}

.activation_logos {
  gap: 12px;
}

.activation_logos img {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}

.activation_container {
  max-width: 780px;
  width: 100%;
  gap: 24px;
}

.activation_card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 40px;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.16);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.activation_heading {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 28px;
  margin: 0;
  letter-spacing: 0.02em;
  color: #161616;
}

.activation_subtitle {
  font-family: "DM Sans", sans-serif;
  margin: 0;
  color: #5c5c5c;
  font-size: 15px;
}

.activation_form {
  gap: 18px;
}

.activation_input {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.activation_label {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3b3b3b;
}

.activation_form input[type="password"] {
  width: 100%;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #f9fafb;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.activation_form input[type="password"]:focus {
  border-color: #fa5000;
  box-shadow: 0 0 0 3px rgba(250, 80, 0, 0.2);
  outline: none;
}

.activation_errors {
  min-height: 18px;
}

.activation_button {
  width: 100%;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #fa5000, #fb6b2d);
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.activation_button:hover {
  background: linear-gradient(120deg, #121212, #2a2a2a);
}

.activation_link {
  font-family: "DM Sans", sans-serif;
  color: #fa5000;
  font-weight: 600;
  text-decoration: none;
}

.activation_link:hover {
  color: #121212;
}

.activation_footer_logo img {
  max-width: 160px;
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .empty_background {
    margin-top: unset;

    width: 100%;
    height:100%;
  }
.password_flex{
    margin: unset;
    padding-top: 50px;
    width: 100%;
    height:100%;
}

  .activation_page {
    padding: unset;
    height: unset;
    padding-top: 20px;
  }

  .activation_card {
    padding: 28px 22px;
  }

  .activation_heading {
    font-size: 24px;
  }
}
