

* {
    margin: 0;
    padding: 0;
}

header, section, footer, aside, nav, main, article, figure {
    display: block;
}

.wrap {
    height: 100%;
    background-image: url(../img/bird-background.svg);
    background-repeat: no-repeat;
    background-size: 60% 90%;
    background-position: right 25px bottom 40px;
}

.site-login {
    /* margin-top: 10%; */
}

.login-title{
    font-size: 30px;
    color: var(--black);
    font-weight: 500;
    transform: translateY(-60px);
}

.logo-nestle{
    position: absolute;
    left: 0;
    top: 53px;
}

.footer {
    height: 30px;
}

.btn-login {
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    touch-action: manipulation;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 16px !important;
    color: #fff;
    /*padding: 7px 32px 9px 30px;*/
    height: 40px;
    border-radius: var(--border-radius);
    background-color: var(--blue);
    width: 160px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active
{
 -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.btn-login:hover {
    opacity: 0.85;
}

.btn-login:active {
    opacity: 0.65;
}

.has-error .form-control {
    border-color: var(--red) !important;
    border-width: 1px;
}

.has-error .help-block, .has-error .control-label {
    color: var(--red);
    font-size: 16px;
}

.has-success .form-control {
    border-color: var(--green) !important;
    border-width: 1px;
}

.has-success .help-block, .has-success .control-label {
    color: var(--green);
    font-size: 16px;
}

#loginform-username, #loginform-password {
    height: 40px !important;
    /* box-shadow: none !important; */
    border-radius: var(--border-radius);
    background-color: transparent;
    border: 1px solid var(--black);
}

.control-label {
    text-align: left !important;
    padding: 0 !important;
    color: #939190 !important;
    padding-left: 27px !important;
    padding-bottom: 10px !important;
}

.form-group {
    margin-bottom: 15px !important;
}

.form-horizontal .form-group{
    margin: 0;
}

.help-block {
    padding-left: 27px;
}

.form-control {
    padding: 8px 8px !important;
}

#loginform-rememberme {
    margin-left: 27px !important;
    -ms-transform: scale(2);
    -moz-transform: scale(1.4) !important;
    -webkit-transform: scale(2);
    -o-transform: scale(2);
    height: 10px !important;
    position: relative;
}

.arrow-right {
    width: 0;
    height: 0;
    margin-left: 2%;
    display: inline-block;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #f0f8ff;
}

input[type="checkbox"] {
    opacity: 0;
    display: none;
}

input[type="checkbox"] + label {
    margin: 0 0 0 30px;
    /* left: 35%; */
    position: relative;
    cursor: pointer;
    float: left;
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
    word-wrap: break-word;
    top: 10px;
}

input[type="checkbox"] + label ~ label {
    margin: 0 0 0 40px;
}

input[type="checkbox"] + label::before {
    content: ' ';
    position: absolute;
    left: -30px;
    top: 0px;
    border-radius: 3px;
    width: 22px;
    height: 22px;
    display: block;
    background: #fff;
    border: solid 1px var(--black);
}

input[type="checkbox"] + label::after {
    content: ' ';
    position: absolute;
    left: -26.5px;
    top: 4px;
    width: 15px;
    height: 15px;
    display: block;
    z-index: 1;
    background: url(../img/rememberMe-icon.svg) no-repeat center center;
    -ms-transition: all .2s ease;
    -webkit-transition: all .2s ease;
    transition: all .3s ease;
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}

input[type="checkbox"]:checked + label::after {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

