*{
    box-sizing: border-box;
}
html, body {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: verdana,"Open Sans",sans-serif;
    font-size: 14px;
}
main {
    width: 100%;
    height: 100%;
    position: relative;
    color: #FFF;
}
main:before {
    content: '';
    position: fixed;
    right: 0;
    top: 0;
    width: 31%;
    height: 100%;
    z-index: 0;
    background: var(--defautColor2);
}
main:after {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: var(--defautColor1);
}
section.container{
    position: relative;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 10em;
}
header{
    display: flex;
    margin-bottom: 80px;
    padding: 0 0 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    justify-content: space-between;
    align-items: end;
}
header .navLogo svg{
    fill: white;
    height: 70px;
}
header a{
    text-decoration: none;
    color: #FFF;
    padding: 0 0.5em;
}
.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.leftContent {
    width: 360px;
}
.leftContent h2 {
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 300;
}
.leftContent p {
    font-size: 16px;
}
.rightContent {
    background: #fff;
    padding: 2em;
    color: #282828;
    border-radius: 0.25em;
    width: 360px;
}
.rightContent form {
    padding: 20px 0 0;
}
.rightContent h1 {
    font-size: 24px;
    color: var(--defautColor2);
    margin: 0;
}
.rightContent h3 {
    font-size: 18px;
    color: var(--defautColor1);
    margin: 0;
}
form>div {
    margin-top: 20px;
}
.rememberContainer label {
    display: flex;
    align-items: center;
}
.rememberContainer label span{
    margin-right: 20px;
}
select, input, button, .btn{
    height: 36px;
    display: inline-block;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: #fff;
    background-clip: padding-box;
    vertical-align: middle;
    width: 100%;
}
input[type="checkbox"] {
    display: none;
}
input[type="checkbox"]+span {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: 0.3s;
}
input[type="checkbox"]:checked+span {
    background: var(--defautColor1);
    border-color: var(--defautColor1);
    transform: rotate(45deg);
}
input[type="checkbox"]:checked+span::after {
    color: var(--defautColor4);
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 12px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform: translate(-50%, -50%);
}
input[type="submit"] {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
form a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
form .otherLink {
    text-align: center;
}
form .otherLink span * {
    display: inline-block;
    vertical-align: middle;
}
form span.error {
    font-weight: bold;
    color: var(--danger);
    font-size: 0.8em;
    padding: 0.375rem 0.75rem;
}

/*SLIDE*/

.slideMask {
    overflow: hidden;
    height: 50px;
    position: relative;
}
.slide {
    width: 680px;
    height: 50px;
    position: absolute;
    bottom: -50px;
    list-style: none;
}

.slideAnim1 {
    animation: slideCycle 10s linear infinite;
    animation-delay: 0s;
}
.slideAnim2 {
    animation: slideCycle 10s linear infinite;
    animation-delay: 2s;
}
.slideAnim3 {
    animation: slideCycle 10s linear infinite;
    animation-delay: 4s;
}
.slideAnim4 {
    animation: slideCycle 10s linear infinite;
    animation-delay: 6s;
}
.slideAnim5 {
    animation: slideCycle 10s linear infinite;
    animation-delay: 8s;
}

@keyframes slideCycle {
    0% {
        bottom: -50px;
        opacity: 1;
    }
    3% {
        bottom: 0px;
    }
    19% {
        bottom: 0px;
    }
    22% {
        bottom: 50px;
        opacity: 1;
    }
    30% {
        bottom: 50px;
        opacity: 0;
    }
    40% {
        bottom: -50px;
        opacity: 0;
    }
}
.treatmentNotification {
    color: white;
    padding: 1.5em 2em;
    position: fixed;
    bottom: 0;
    right: 0;
    margin-right: 20px;
    margin-bottom: 20px;
    z-index: 1;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1em;
    border-radius: 0.25rem;
}
.treatmentNotification.success {
    background-color: var(--success);
}
.treatmentNotification.error {
    background-color: var(--danger);
}
.treatmentNotification.warning {
    background-color: var(--warning);
}
.treatmentNotification.info {
    background-color: var(--info);
}
.treatmentNotification svg {
    fill: #FFF;
}
.treatmentNotification span {
    font-size: 1.2em;
    margin-bottom: 2px;
}