.main {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome {
    width: 100%;
    height: 100vh;
    background-color: var(--background);
    z-index: 999999999;
    position: fixed;
    top: 0;
    left: 0;
    transition: 5s all ease-in-out;
    opacity: 0;
    pointer-events: none;
}
 
.welcome p {
    width: 100%;
    height: 1%;
    text-align: center;
    line-height: 100vh;
    font-size: 10vh;
    font-weight: 100;
    pointer-events: none;
    color: var(--text);
    transition: 0.5s all ease-in-out;
   
}
 
.spinner {
    width: 4%;
    margin-left: 48%;
    margin-top: 35%;
    animation: spin 1s infinite linear;
    opacity: 0;
    transition: 0.5s all ease-in-out;
}
 
@keyframes spin{
    100% {
        rotate: 360deg;
    }
}


.welcome {
    display: none;
}

.frame {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}

.login {
    width: 270px;
    border-radius: 5px;
    height: 400px;
    padding: 20px;
    margin-top: 50px;
    background-color: var(--second);
}



.maindiv {
    width: 100%;
    height: 100vh;
    display: block;
    z-index: 0;
    /* background-image: linear-gradient(50deg, #0967fd9c,#4e0dffaf, #a800a8a4); */
    /* background-size: 200%;
    background-position-x: 0%; */
    background-image: url("/assets/images/gradient.png");
}


@keyframes anima {
    0% {
        top: 0;
    }
    50% {
        top: 100px;
        rotate: 320deg;
    }
    100% {
        top: 0;
    }
    
}



.title {
    text-align: center;
    margin-top: 20px;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}


.field {
    width: 100%;
    height: 70px;
    margin-bottom: 20px;
}

.label {
    font-weight: 200;
}

.input {
    border-bottom: 1px solid rgba(128, 128, 128, 0.527);
}

.input i {
    line-height: 40px;
    color: grey;
}

.input input {
    margin-left: 3px;
    width: 250px;
    height: 40px;
    background-color: transparent;
}

@media only screen and (max-width: 700px) {
    .input input {
        width: 200px !important;
    }
}

.login {
    overflow: hidden;
}

.inputsframe {
    right: 0%;
}

.processing {
    right: -110%;
}

.processing h2 {
    margin-top: 30px;
    font-weight: 500;
    color: var(--main);
    margin-bottom: 30px;
}

.processing .divline {
    margin-top: 60px;
    margin-bottom: 30px;
    height: 1px;
    width: 100%;
    background-color: rgba(121, 115, 115, 0.116);
}

.processing .fa-spin {
    font-size: 30px;
    text-align: center;
    margin-top: 30px;
    margin-left: 44%;

}

.error {
    margin-top: 5px;
    font-size: 12px;
    color: rgb(255, 97, 97);
    opacity: 0;
    transition: 1s all ease-in-out;
}

.suspended {
    margin-top: 10px;
    font-size: 14px;
    color: rgb(247, 43, 43);
    display: none;

}

.processing img {
    width: 100%;
    margin-top: 3px;
}
.processing p {
    margin-top: 10px;
    font-weight: 200;
}

.login > div {
    height: 400px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    transition: 0.7s all ease-in-out;
}
.processing {
    transform: translateY(-100%);
}
.loginbutton {
    width: 100%;
    margin-top: 10px;
    height: 35px;
    cursor: pointer;
    border-radius: 4px;
    background-color: var(--main);
    color: var(--text);
    transition: 0.2s all ease-in-out;
}

.disabled {
    color: grey;
    cursor: not-allowed;
    background-color: rgba(131, 131, 131, 0.034) !important;
}