html,
body {
    background: #FFF;
    color: #424242;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

form {
    border-radius: 40px;
    background: #E8C4D8;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    width: 100%;
}

.site-logo {}

.site-name {
    font-size: 4rem;
    line-height: 4.5rem;
    font-weight: bold;
    margin-top: 10px;
}

.site-name span {
    color: #E8C4D8;
}

.login {
    max-width: 530px;
    width: calc(100% - 30px) !important;
}

.login-form .form-group {
    margin-top: 25px;
    position: relative;
    margin-bottom: 0px;
}

.login-form label {
    cursor: pointer;
    position: absolute;
    transition: 0.15s;
    left: 10px;
    top: 0.8rem;
    padding: 3px 6px 3px 6px;
    background: white;
    font-weight: 400;
    margin-bottom: 0px;
    font-size: 15px;
    letter-spacing: 0.3px;
    color: #888;
    z-index: 0;
}

.login-form .form-group.focus label {
    font-size: 14px;
    top: -11px;
    color: #C66C9D;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 50%, rgba(232, 196, 216, 1) 50%);
}

.btn-main-alt {
    border-radius: 8px;
    background-color: #222;
    color: white;
    transition: 350ms ease;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1em;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.06em;
    border: 1px solid #696969;
    padding: 0.8rem 1.1rem;
}

.btn-main-alt:hover {
    box-shadow: rgb(76 78 100 / 56%) 0px 6px 18px -8px;
    background-color: #000;
    color: #fff;
}

@media screen and (max-width: 786px) {
    .login {
        max-width: 100%;
    }

    .login-form label {
        top: 0.9rem;
    }
}

.login-form input {
    color: #333 !important;
    background: white !important;
    border: 2px solid #ced4da !important;
    border-radius: 8px !important;
    height: 3.5rem !important;
    padding: 16.5px 14px !important;
    font-size: 16px !important;
}

.login-form input:active,
.login-form input:hover,
.login-form input:focus {
    border: 3px solid #D798BB !important;
}


/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #333 !important;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
