.login-card {
    background: none;
    /* Optionally set 'background-color: #color' to change background */
}

.login-form .form-group {
    margin-bottom: 1rem;
    /* Adjust the spacing between form elements */
}

.login-form input[type="text"],
.login-form input[type="password"] {
    border: 1px solid #ced4da;
    /* Adjust the input border as needed */
    margin-bottom: 1rem;
    /* Spacing after each input */
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    box-shadow: none;
    /* Removes the Bootstrap glow effect on focus */
    border-color: #ced4da;
    /* Adjust to match the design */
}

.login-form button[type="submit"] {
    margin-top: 1rem;
    /* Spacing before the submit button */
}
