.login {
    background-image: url('../img/bg-login.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
}

.login::after {
    content: '';
    background-color: rgba(155, 155, 155, 22%);
    backdrop-filter: blur(3px);
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
}

.login .content {
    z-index: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: end;
}

.login .content .logo img {
    width: 130px;
}

.login .content .input-group {
    height: 44px;
}

.login .content .input-group input.form-control {
    /* background-color: rgba(23, 24, 29, 50%); */
    background-color: light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
    border: 0;
    /* color: #fff; */
    color: black;
    padding-left: 15px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.login .content .input-group span.input-group-text {
    background-color: rgba(23, 24, 29, 50%);
    border: 0;
    color: var(--white-color);
    font-size: 16px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.login input::placeholder {
    /* color: var(--white-color); */
    color: black;
    font-size: 13px;
}

.login .btn-login {
    background-color: var(--white-color);
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-size: 13px;
    font-weight: bold;
}

.login .btn-create {
    background-color: transparent;
    border: 1px solid var(--white-color);
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-size: 13px;
    color: var(--white-color);
    font-weight: bold;
}
