body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../../img/dkk.jpg");
    /* Ensuring background covers entire viewport */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* Ensuring the background is fixed */
    background-attachment: fixed;
    /* Other styles remain the same */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px linear-gradient(90deg, #ff5e5e, #fd2e2e, #ff5e5e);
}

.card-header {
    background-color: #fd2e2e;
    color: white;
    text-align: center;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
}

.btn-login {
    background-color: #fd2e2e;
    border-color: #fd2e2e;
    color: white;
    font-weight: bold;
}

.btn-login:hover {
    background-color: #ff5e5e;
    border-color: #ff5e5e;
}

.back-btn {
    color: white;
    font-weight: bold;
}
