/* === Center the form on the page === */
.row.justify-content-center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 20px;
}

/* === Login container with soft shadow & animations === */


/* === Login heading === */
h2.text-center {
    color: #1E3A8A;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* === Input fields styling === */
.form-group {
    margin-bottom: 15px;
}

.form-control {
    border-radius: 6px;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ccc;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
}

/* === Input focus effect === */
.form-control:focus {
    border-color: #1E3A8A;
    box-shadow: 0 0 8px rgba(30, 58, 138, 0.4);
    outline: none;
}

/* === Button styling with hover effect === */
.btn-primary {
    background: linear-gradient(to right, #1E3A8A, #3B82F6);
    border: none;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background: linear-gradient(to right, #162D69, #2563EB);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* === Centered text with improved link style === */
.text-center a {
    color: #3B82F6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-center a:hover {
    color: #1E3A8A;
    text-decoration: underline;
}

/* === Animations === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Responsive Design for Smaller Screens === */
@media (max-width: 500px) {
    .login-container {
        padding: 30px;
    }

    h2.text-center {
        font-size: 24px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 10px;
    }
}