/* Left and right sections */
.form-section {
    flex: 1;
    padding: 40px 50px;
    box-sizing: border-box;
    max-width: 75vw;
    margin: auto;
}

/* Separator line */


section h2 {
    margin-bottom: 25px;
    color: var(--petfood-green-dark);
    font-weight: 600;
    font-size: 28px;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.inpute {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border: 1.5px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.inpute:focus {
    border-color: #007bff;
    outline: none;
}

.submit {
    width: 100%;
    text-align: center;
    display: inline-block;
    line-height: 0;
}
.message {
    margin-top: 15px;
    font-weight: 600;
    font-size: 14px;
    min-height: 20px;
}

.spinner {
    width: 16px;
    height: 16px;
    flex-shrink: 0; /* Prevent shrinking in flex containers */
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    animation: spin 0.7s linear infinite;
    margin-left: 8px;
    display: inline-block; /* Ensures proper sizing */
    vertical-align: middle;
}
.hidden {
    display: none !important;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#requestAccountBtn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ---------- Password requirements checklist ---------- */
.pw-meter {
    margin: 8px 0 14px;
    padding: 10px 12px;
    border: 1px dashed rgba(0,0,0,0.15);
    border-radius: 10px;
    background: rgba(0,0,0,0.025);
}

.pw-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    line-height: 1.4;
    color: #6b7280;
    margin: 2px 0;
}

.pw-row .dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid #d1d5db; /* gray-300 */
    background: #fff;
    display: inline-block;
    transition: all 150ms ease;
}

.pw-row .dot.ok {
    background: #16a34a;     /* green fill */
    border-color: #16a34a;
    box-shadow: 0 0 0 2px rgba(22,163,74,0.15);
}

.pw-row .dot.ok + span,
.pw-row.ok {
    color: #111827; /* gray-900 */
}

#additionalInfo {
    resize: none;
}

.password-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
#signupPasswordInput {
    padding-right: 30px; /* space for the eye icon */
}
.eye-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-90%);
    cursor: pointer;
    user-select: none;
}
.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.or-divider hr {
  flex: 1;
  border: none;
  border-top: 2px solid var(--petfood-green-dark);
  margin: 0 10px;
}

.or-divider span {
  white-space: nowrap;
  font-weight: bold;
  color: var(--petfood-green-dark);
}
@media (max-width: 775px) {
    .form-section {
        min-width: 100vw;
    }

}