.login-box {
    --font-style: 'Nunito Sans', sans-serif;
    font-family: var(--font-style);
    width: 400px;
    padding: 40px;
    border: solid 1px;
    border-radius: 10px;
    background: var(--c-bg-theme-general);
    box-shadow: var(--c-shadow-form-box);
}

.login-box h2 {
    margin: 0 0 30px;
    padding: 0;
    text-align: center;
    color: var(--c-color-theme-general);
}

.login-box .user-box input {
    position: relative;
    width: 100%;
    font-size: 16px;
    margin-bottom: 30px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--c-color-theme-general);
    border-bottom: 1px solid var(--c-color-theme-general);
}

.login-box .user-box .input-validation-error {
    animation: fadeIn 1s;
    -webkit-animation: fadeIn 1s;
    -moz-animation: fadeIn 1s;
    -o-animation: fadeIn 1s;
    -ms-animation: fadeIn 1s;
    border-bottom: var(--c-border-bottom-login-box);
}

.login-box .user-box input:-webkit-autofill,
.login-box .user-box input:-webkit-autofill:hover,
.login-box .user-box input:-webkit-autofill:focus,
.login-box .user-box input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: var(--c-color-theme-general) !important;
}

.login-box .user-box label {
    position: relative;
    left: 0;
    top: -60px;
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
    color: var(--c-color-login-box-user-box-label);
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:not(:placeholder-shown) ~ label {
    top: -85px;
    left: 0;
    color: var(--c-color-theme-general);
    font-size: 12px;
}

.login-box #submit {
    padding: 10px 20px;
    color: var(--c-color-theme-general);
    border: 1px solid var(--c-border-color-login-box-submit);
    background: var(--c-bg-theme-general);
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    letter-spacing: 4px;
    margin: auto;
}

.login-box #submit:hover {
    border-radius: 5px;
    color: #000;
    background: var(--c-bg-login-box-submit-hover);
    box-shadow: var(--c-shadow-login-box-submit-hover);
}

.login-box .button-form {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.login-box .validation-box {
    margin-top: 20px
}

.login-box .validation-box.summary-validation-box {
    position: unset;
    bottom: unset;
}

.login-box .validation-box .field-validation-error {
    opacity: 0.8;
    display: list-item;
    animation: fadeIn 2s;
    -webkit-animation: fadeIn 2s;
    -moz-animation: fadeIn 2s;
    -o-animation: fadeIn 2s;
    -ms-animation: fadeIn 2s;
    color: red;
}

.login-box .validation-box .validation-summary-errors li {
    opacity: 0.8;
    animation: fadeIn 2s;
    -webkit-animation: fadeIn 2s;
    -moz-animation: fadeIn 2s;
    -o-animation: fadeIn 2s;
    -ms-animation: fadeIn 2s;
    color: red;
}
