/* Auth Page Styles */
.auth-container {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 60px;
    align-items: start;
}

.auth-divider {
    background: #eee;
    height: 100%;
    width: 1px;
}

.auth-box {
    padding: 10px;
}

.auth-header {
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.auth-header p {
    color: #777;
    font-size: 0.95rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #444;
}

.form-group input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #d00000;
    box-shadow: 0 0 8px rgba(208, 0, 0, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #666;
}

.forgot-link {
    color: #d00000;
    text-decoration: none;
    font-weight: 600;
}

.btn-auth {
    background: #222;
    color: #fff;
    border: none;
    padding: 14px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-auth:hover {
    background: #d00000;
}

.btn-auth-outline {
    background: #fff;
    color: #222;
    border: 2px solid #222;
    padding: 12px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-auth-outline:hover {
    background: #222;
    color: #fff;
}

.terms-text {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

.terms-text a {
    color: #d00000;
    text-decoration: none;
}

/* Social Auth */
.social-auth {
    margin-top: 20px;
    text-align: center;
}

.social-auth span {
    font-size: 0.75rem;
    color: #bbb;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    position: relative;
}

.social-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-btn.fb { color: #3b5998; }
.social-btn.google { color: #db4437; }

.social-btn:hover {
    border-color: #d00000;
    transform: translateY(-3px);
}

/* Responsive */
.auth-container.single-form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    padding: 60px 20px;
}

.center-box {
    max-width: 450px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
}

.text-center {
    text-align: center;
}

.auth-footer-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

.auth-footer-text a {
    color: #d00000;
    font-weight: 700;
    text-decoration: none;
}

