/* Login Page Enhancements */
.app-auth-body {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-heading {
    color: #1e4902;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.input-group-text {
    background: linear-gradient(135deg, #1e4902 0%, #2d5a03 100%);
    color: white;
    border: none;
    border-radius: 10px 0 0 10px;
}

.form-control {
    border-radius: 0 10px 10px 0;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #1e4902;
    box-shadow: 0 0 0 0.2rem rgba(30, 73, 2, 0.25);
}

.input-group:focus-within .input-group-text {
    background: linear-gradient(135deg, #2d5a03 0%, #1e4902 100%);
}

.app-btn-primary {
    background: linear-gradient(135deg, #1e4902 0%, #2d5a03 100%);
    border: none;
    border-radius: 25px;

    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 73, 2, 0.3);
}

.app-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(30, 73, 2, 0.4);
    background: linear-gradient(135deg, #2d5a03 0%, #1e4902 100%);
}

.form-check-input:checked {
    background-color: #1e4902;
    border-color: #1e4902;
}

.auth-background-overlay {
    background: linear-gradient(135deg, rgba(30, 73, 2, 0.9) 0%, rgba(45, 90, 3, 0.9) 100%);
    border-radius: 15px;
    margin: 1rem;
}

.overlay-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-title {
    color: white;
    font-weight: 600;
}

.overlay-content a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.overlay-content a:hover {
    color: #f8f9fa;
    text-decoration: underline;
}

.logo-icon {
    max-width: 150px;
    margin-bottom: 1rem;
}

.logo-colleges {
    max-width: 50px;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .app-auth-body {
        margin: 1rem;
        padding: 1.5rem;
    }

    .auth-heading {
        font-size: 1.5rem;
    }

    .auth-background-overlay {
        margin: 0.5rem;
    }
}
