#loginForm {
    border: 2px solid #3F5EFB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 350px;
    height: 300px;
    margin: auto auto;
    border-radius: 20px;
    box-shadow: 10px 5px 5px #3F5EFB;
}

.fieldForm {
    margin: 10px 0 0 0;
    position: relative;
}

.input {
    border: 1px solid #3F5EFB;
    border-radius: 5px;
    height: 30px;
    width: 170px;
}

#loginText {
    font-size: 80px;
    position: relative;
    color: transparent;
    -webkit-text-stroke:2px #3F5EFB ;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 0 10px 0 ;
}

#loginText::before {
    content: 'LOGIN';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: radial-gradient(circle, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%), text;
    background-clip: text;
    border-right: 4px solid #3F5EFB;
    transition: 1s;
    white-space: nowrap;
}

#loginForm:hover #loginText::before {
    width: 100%;
}

#submitBtn {
    width: 130px;
    height: 40px;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
    background: transparent;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: 20px;
    background-color: #3F5EFB;
    transition: 0.1s;
    color: white;
}

#submitBtn:hover {
    font-size: 23px;
    width: 133px;
    height: 45px;
    background-color: #6680ff;
    transition: 0.1s;
}

#submitBtn:active {
    width: 130px;
    height: 40px;
    font-size: 20px;
    background-color: #1d41f7;
    transition: 0.1s;
}

.error {
    border: 2px solid red;
}

.errorMessage {
    color: gray;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 100;
    position: relative;
    left: 5px;
}

