body {
    background-color: #292f45;
}
.login__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(40rem,1fr));
    grid-template-rows: 1fr;
    grid-column-gap: 1rem;
    height: 100%;
    width: 100%;
    justify-items: center;
    background-color: #14347687;
}
.login__item--left img {
    width: 100%;
    height: 100%;
}
.login__item--right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: stretch;
    gap: 2rem;
    padding: 8rem;
    background: linear-gradient(249deg, #33174f, #363a73e8, #200347);
    background-size: 600% 600%;
    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    -o-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}

.login--preArrow{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
}
.login--preArrow i,.login--preArrow a{
    color: var(--login-color);
    position: relative;
    background: linear-gradient( to right, #5250e5, #9b68d4 50%, var(--login-color) 50% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease;
}
.login--preArrow:hover a ,.login--preArrow:hover i {
    background-position: 0 100%;
}
.login--form {
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.login--title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 4rem;
    background: linear-gradient(246deg, #9fb2db, #1e23b1ed);
    -webkit-background-clip: text;
    -webkit-text-stroke: 2px transparent;
    padding: 1rem;
}
.login--form label {
    color: var(--login-color);
}
.login--form input {
    transition: all 1.5s ease;
}
.login--form input:not(:last-of-type) {
    line-height: 2;
    border: 0.1rem solid #9da3b969;
    border-bottom: 0.3rem solid #9da3b969;
    background: transparent;
    padding: 1rem;
    border-radius: 1rem;
    outline: none;
    transition: all 1.5s ease;
    color: var(--primary-font);
}
.login--form input::placeholder {
    color: #60667c;
}
.btn_sign {
    background-color: var(--blue) !important;
    color: var(--primary-font) !important;
    padding: 1.2rem;
    border-radius: 1rem;
    margin-top: 1rem;
    outline: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.login--form input:not(:last-of-type):focus {
    border-bottom-color: #5142fca6;
}
.btn_sign:hover {
    transition: all 1.5s ease;
    -webkit-filter: brightness(70%);
    border-radius: 2rem;
}
.login--createAccount {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}
.login--createAccount p {
    color: var(--login-color);
}
.login--createAccount a {
    color: #6867ae;
}
.line-center {
    margin: 0;
    padding: 0 10px;
    display: inline-block;
    font-weight: bold;
}
.login--createAccount--items h5 {
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--login-color);
    font-weight: 200;
}
.login--createAccount--items h5:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    border-top: solid 0.1rem #6a718b;
    z-index: -1;
    width: 45%;
}
.login--createAccount--items h5:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    border-top: solid 0.1rem #6a718b;
    z-index: -1;
    width: 45%;
}
.login--createAccount--items:nth-child(1) {
    display: flex;
    justify-content: center;
}
.footer--socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.footer--social-item:nth-child(1) {
    background-color: #4faaef;
}
.footer--social-item:nth-child(2) {
    background-color: #3e5998;
}
.footer--social-item:nth-child(3) {
    background-color: red;
}
.footer--social-item:nth-child(4) {
    background-color: #4c4b49;
}

/* Animation */
@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}