/* Custom Login Form Styling */
.min-vh-100 {
    min-height: 100vh;
}

.auth-card {
    background: #ffffff;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
}

.auth-card__header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    background: #fff;
    color: #253D4E;
    margin: 0;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.auth-card__header::before {
    content: none;
}

.auth-card__header-icon {
    width: 64px;
    height: 64px;
    background: #f2fce4 !important;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #3bb77e !important;
    font-size: 2rem;
    border: none !important;
    box-shadow: 0 5px 15px rgba(59, 183, 126, 0.1);
}

.auth-card__header-title {
    color: #253D4E !important;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
    line-height: 1.2;
}

.auth-card__header-description {
    color: #7E7E7E !important;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
    background: #f2fce4;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    max-width: 90%;
}

.auth-card__header-description span {
    background: #3bb77e;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.auth-card__body {
    padding: 2rem;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.btn-primary {
    background: #3bb77e !important;
    border: 1px solid #3bb77e !important;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    color: #fff !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #29a56c !important;
    border-color: #29a56c !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 183, 126, 0.2);
}

.alert {
    border-radius: 8px;
    border: none;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auth-card {
        margin: 1rem;
        max-width: none;
    }

    .auth-card__header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .auth-card__body {
        padding: 1.5rem;
    }
}

/* Animation */
.auth-card {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}