body, html {
    height: 100%;
}
.login-image {
    background: url("../images/auth-image.png") no-repeat center center;
    background-size: cover;
    height: 100vh;
}
.login-form {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.card {
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 12px;
}
.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}
@media (max-width: 768px) {
    .login-image {
        display: none;
    }
}

button.btn.btn-primary {
    color: white;
    background-color: black;
    border:none;
    padding: 10px 10px 10px 10px;
    font-weight: 600;
    border-radius: 10px;
}

button.btn.btn-primary:hover {
    background-color: #222;
}

button.btn.btn-primary:active,
button.btn.btn-primary:focus {
    background-color: black;
    box-shadow: none;
    outline: none;
}

.custom-button-bg {
    background-color: #DeDeDe;
    color: black;
    border-radius: 8px;
}
.custom-button-bg:focus {
    border-color: black;
    background-color: #DeDeDe;
    outline: none;
}
