#background {
    background-color: var(--content-background);
    background-position: center;
    background-size: cover;
}

input {
    background-color: white !important;
    border: none !important;
    box-shadow: 0 4px 10px 0 var(--primary-color) !important;
    text-shadow: 0px 0px 10px white, 
        -2px -2px 0 white, 2px 2px 0 white,
        -2px 2px 0 white, 2px -2px 0 white,
        2px 0 0 white, 0px 2px 0 white,
        -2px 0 0 white, 0 -2px 0 white;
    color: var(--primary-color) !important;
    font-weight: bold;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    background: white !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--primary-color) !important;
}

label {
    font-weight: bold !important;
    font-size: 22px;
    text-shadow: 0px 0px 10px white, 
        -2px -2px 0 white, 2px 2px 0 white,
        -2px 2px 0 white, 2px -2px 0 white,
        2px 0 0 white, 0px 2px 0 white,
        -2px 0 0 white, 0 -2px 0 white;
    color: var(--primary-color);
}
span.input-group-addon {
    background: white;
    border: none;
    border-bottom: 3px solid white;
    color: var(--primary-color);
    text-shadow: 0px 0px 10px white, 
        -2px -2px 0 white, 2px 2px 0 white,
        -2px 2px 0 white, 2px -2px 0 white,
        2px 0 0 white, 0px 2px 0 white,
        -2px 0 0 white, 0 -2px 0 white;
    box-shadow: 0 4px 10px 0 var(--primary-color) !important;
}
button {
    font-size: 15px !important;
    color: white !important;
    font-weight: bold !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    height: 34px !important;
}

.body-sign {
    display: table;
    height: 100vh;
    margin: 0 auto;
    max-width: 500px;
    padding: 0 15px;
    width: 100%;
    font-family: 'Baloo 2', sans-serif;
}
.body-sign .center-sign {
    display: table-cell;
    padding-top: 20px;
    vertical-align: middle;
}

label {
    font-weight: lighter;
}

.form-control {
    height: 34px;
}


#login_panel {
    background-color: #ffffffa8;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation-name: login_panel;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}


@keyframes worker {
    0%   {opacity: 0; left: -17.74193553vw;}
    100% {opacity: 1; left: -23.11827963vw;}
}

@keyframes blink {
    0%   {opacity: 1;}
    25%  {opacity: 0;}
    50%  {opacity: 1;}
    75%  {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes login_panel {
    0%   {opacity: 0; margin-left: 20px;}
    100% {opacity: 1; margin-left: 0;}
}

@media screen and (max-aspect-ratio: 1/1){
    @keyframes worker {
        0%   {opacity: 0; left: -52vw;}
        100% {opacity: 1; left: -59vw;}
    }
}