/* Auth Pages Styles */
.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #1a1a1a;
}

.auth-box {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

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

.auth-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: #999;
    font-size: 14px;
}

.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.alert-error {
    background: rgba(222, 38, 0, 0.1);
    border: 1px solid #de2600;
    color: #ff6b6b;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.alert span {
    font-weight: bold;
}

.auth-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #de2600;
    background: #222;
}

.form-group small {
    display: block;
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}

.error-message {
    display: none;
    color: #de2600;
    font-size: 12px;
    margin-top: 5px;
}

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #ccc;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #de2600;
    color: #fff;
}

.btn-primary:hover {
    background: #b51f00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(222, 38, 0, 0.4);
}

.btn-full {
    width: 100%;
}

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

.auth-footer p {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.auth-footer a:not(.btn-register) {
    color: #de2600;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:not(.btn-register):hover {
    text-decoration: underline;
}

.btn-register {
    background: #555 !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 30px !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none !important;
    display: block !important;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.btn-register:hover {
    background: #666 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(85, 85, 85, 0.4);
    text-decoration: none !important;
    color: #fff !important;
}

.auth-benefits {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.auth-benefits h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.auth-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-benefits ul li {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .auth-container {
        padding: 20px 10px;
        min-height: calc(100vh - 150px);
    }
    
    .auth-box {
        padding: 30px 20px;
    }
    
    .auth-header h1 {
        font-size: 28px;
    }
}

