body {
   
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    min-width: 350px;
}

    .login-card h2 {
        margin-bottom: 1.5rem;
        font-weight: bold;
        text-align: center;
    }

.form-control {
    margin-bottom: 1rem;
}

.btn-success {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
}
