.auth-section {
    min-height: 70vh;
    background: #f7f7f7;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 480px;
}

.auth-box {
    background: #fff;
    padding: 45px;
    border: 1px solid #e5e5e5;
}

.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.auth-header h1 {
    font-size: 32px;
    margin: 0 0 10px;
}

.auth-header p {
    color: #777;
    font-size: 14px;
}

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

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

.auth-form label {
    font-size: 13px;
    font-weight: 600;
}

.auth-form input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.auth-form input:focus {
    border-color: #111;
}

.auth-btn {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 5px;
    transition: background 0.2s ease;
}

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

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-footer p {
    color: #666;
    font-size: 14px;
}

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

.auth-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {

    .auth-section {
        padding: 50px 15px;
    }

    .auth-box {
        padding: 30px 20px;
    }

    .auth-header h1 {
        font-size: 26px;
    }

}
.auth-error {
    background: #fff1f1;
    border: 1px solid #e4b4b4;
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}