html,
body {
    height: 100%;
    margin: 0;
}

body {
    background: linear-gradient(45deg, #4e6ac2 0%, #9fd4b6 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.login-card {
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.logo-section {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-image: url("/img/logo.png");
}

.brand {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.btn-pleasant {
    background-color: #2db36b;
    border-color: #2db36b;
    color: #fff;
}

.btn-pleasant:hover,
.btn-pleasant:focus {
    background-color: #26a15e;
    border-color: #26a15e;
    color: #fff;
}

.forgot-password {
    text-align: center;
    width: 100%;
}

.form-footer a {
    text-decoration: none;
}