body {
    min-height: 100vh;
    margin: 0;
    background-image: url("../images/desktop_background.png");
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0px 10px;
}

@media (max-width: 768px) {
    body {
        background-image: url("../images/smartphone_background.png");
    }
}

body::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.35);
}

.login-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.login-card{
    width:100%;
    max-width:400px;
}

.input-group .btn:focus {
    box-shadow: none;
}

.toggle-password {
    background: transparent;
    border-left: none;
    border-color: var(--bs-border-color);
}
