body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: url(../img/slider/slider_1.webp) no-repeat;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
}

.login {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24vw;
    background: rgba(255, 255, 255, .5);
    border: #ffffff 2px solid;
    border-radius: 5%;
    padding: 1.5rem;
    box-sizing: border-box;
}

.logo {
    position: absolute;
    top: -10%;
    left: 27%;
    width: 50vw;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    color: #444;
    border-radius: 0;
}

.user {
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

h3 {
    margin: 0;
    padding: 0 0 20px;
    color: #ffffff;
    text-align: center;
}

.login input {
    width: 100%;
    border-radius: 0 !important;
    height: 3rem !important;
}

.form-control {
    background-color: #d5d5d5;
    background-clip: unset;
    border: none;
    margin-bottom: 20px;
}

.form-control::placeholder
{
    color: #999;
    font-size: 1rem;
}

.btn {
    background-color: #131a2a;
    color: #fff;
    font-size: 0.75rem;
}

.btn:hover, .btn:focus, .btn:active, .btn:active:focus, .btn:active:hover, .btn:focus:hover, .btn:focus:active, .btn:hover:focus, .btn:hover:active, .btn:hover:focus:active, .btn:active:focus:hover, .btn:active:hover:focus, .btn:focus:hover:active, .btn:focus:active:hover, .btn:hover:focus:active, .btn:hover:active:focus, .btn:focus:active:hover, .btn:focus:hover:active {
    background-color: #131a2a;
    color: #fff;
    font-size: 0.75rem;
}

.login a {
    color: #444444;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    display: block;
}

a:hover {
    color: #000000;
}

.icon {
    text-align: center;
    background-color: #131a2a;
    border-radius: 180%;
    width: 100px;
    height: 100px;
    margin-top: -5rem;
    margin-bottom: 1rem;
}

.fa-light {
    position: relative;
    top: calc(33% - 10px);
}

@media (max-width: 991.98px) {
    .logo {
        top: -5%;
        width: 70vw;
        left: 15%;
    }

    .login {
        width: 80vw;
    }
}

@media (max-width: 991.98px) and (orientation: landscape) {
    .logo {
        display: none;
    }
    .login {
        width: 50vw;
    }
}