/* Auth Wrapper - DattaAble Style */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f5f7;
    padding: 1rem;
}

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

.auth-inner {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.auth-body {
    padding: 2rem;
}

/* Auth Brand */
.auth-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-brand-img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

/* Auth Title */
.auth-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Form Styles */
.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.auth-form .form-control {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    background-color: #fff;
}

.auth-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

.auth-form .form-control::placeholder {
    color: #adb5bd;
}

/* Checkbox */
.auth-form .form-check-input {
    border: 1px solid #dee2e6;
    cursor: pointer;
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
}

.auth-form .form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.auth-form .form-check-label {
    cursor: pointer;
    color: #495057;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* Forgot Password */
.auth-form a.text-muted {
    color: #6c757d !important;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-form a.text-muted:hover {
    color: #667eea !important;
    text-decoration: underline;
}

/* Button */
.auth-form .btn-primary {
    background-color: #667eea;
    border-color: #667eea;
    border-radius: 0.375rem;
    padding: 0.625rem 1rem;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.auth-form .btn-primary:hover {
    background-color: #5568d3;
    border-color: #5568d3;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.auth-form .btn-primary:active {
    transform: translateY(0);
}

/* Auth Footer */
.auth-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.auth-footer p {
    font-size: 0.875rem;
    color: #6c757d;
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-footer a:hover {
    color: #5568d3;
    text-decoration: underline;
}

/* Alert Container */
#alertContainer {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 575.98px) {
    .auth-body {
        padding: 1.5rem;
    }
    
    .auth-title {
        font-size: 1.25rem;
    }
    
    .auth-form .form-group.d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
    
    .auth-form a.text-muted {
        align-self: flex-end;
    }
}



