:root {
    --bright-blue: #5b90c6;
    --blue: #4A5F91;
    --grey: #44474d;
    --green: #33a44a;
    --lavender: #f977d6;
}
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, var(--blue), var(--bright-blue));
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.auth-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.auth-card {
  background: white;
  width: 400px;
  padding: 10px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  text-align: center;
}
#logo-container {
  display: inline-block;
  width: 75px;
  height: auto;
}
#logo-container img {
  width: 75%;
  height: auto;
  margin-top: 15px;

}
.auth-card h1 {
  color: var(--blue);
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 28px;
}
.auth-card h2 {
  color: var(--grey);
  margin: 5px 0 10px;
  font-weight: normal;
  font-size: 20px;
}
.auth-card input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.text-link {
    color: #be469e;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.text-link:hover {
    text-decoration: underline;
}

.auth-card button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-size: 15px;
  cursor: pointer;
}

.auth-card button:hover {
  background: #1e3c72;
}

.switch {
  margin-top: 15px;
  font-size: 14px;
}

.switch a {
  color: #2a5298;
  font-weight: bold;
  text-decoration: none;
}

/* PLAN SELECTOR */

.plan-selector {
  display: flex;
  gap: 10px;
  margin: 25px 0;
}

.plan-card {
  position: relative;
  flex: 1;
  padding: 14px 10px;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid #ccc;
  font-size: 14px;
  transition: all 0.25s ease;
  text-align: center;
}
.plan-card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.plan-card input {
  display: none;
}

.plan-card.green { border-color: var(--green); }
.plan-card.blue  { border-color: var(--blue); }
.plan-card.pink  { border-color: var(--lavender); }

.plan-card input:checked + span {
  color: white;
  font-weight: bold;
}

.plan-card.green input:checked + span {
  background: var(--green);
}
.plan-card.blue input:checked + span {
  background: var(--blue);
}
.plan-card.pink input:checked + span {
  background: var(--lavender);
}

/* Make the span fill the card */
.plan-card span {
  display: block;
  padding: 12px;
  border-radius: 10px;
}

/* Pop effect */
.plan-card input:checked + span {
  transform: scale(1.05);
}


/* Styling the new dropdown */
.custom-select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: white;
    color: #444;
}
/* Designing the Back button to look different from the primary button */
.back-btn {
    background: #e0e0e0 !important;
    color: #666 !important;
}

.back-btn:hover {
    background: #d0d0d0 !important;
}

/* Smooth fade-in for steps */
.form-step {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}


