/* css/auth.css */
.auth-form {
    display: none;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    width: 100%;
}

.auth-form.active-form {
    display: flex;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    text-align: left; /* Text ko left align rakhega */
}

.input-group label {
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: left; /* Labels ko left side me freeze rakhega */
}

.input-group input,
.input-group select {
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #2dd4bf;
}

.btn-submit {
    background: linear-gradient(135deg, #0d9488 0%, #2563eb 100%);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%; /* Button ko Owner Portal ki tarah full width banayega */
    display: block;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(45, 212, 191, 0.5);
}

.form-nav-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 13px;
}

.form-nav-links a {
    color: #38bdf8;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}

.form-nav-links a:hover {
    text-decoration: underline;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #64748b;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

/* Center 'Back to Login' links in Register and Forgot Password forms */
#registerFormBlock .form-nav-links,
#forgotFormBlock .form-nav-links {
    justify-content: center;
    width: 100%;
    text-align: center;
}