@keyframes opacity{
    0% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes position{
    0% {top: calc(50% - 166px);
        left: calc(50% - 133px);
        opacity: 1;
        width: 265px;}
    50% {top: 80px;
        left: 77px;
        opacity: 0;
        width: 100px;}    
    100% {top: 80px;
        left: 77px;
        opacity: 0;
        width: 100px;}
}
@keyframes positionBlue{
    0% {top: calc(50% - 166px);
        left: calc(50% - 133px);
        opacity: 0;
        width: 265px;}
    50% {top: 80px;
        left: 77px;
        opacity: 1;
        width: 100px;}
    100% {top: 80px;
        left: 77px;
        opacity: 1;
        width: 100px;}
}
@keyframes notificationBubble{
    0%{bottom: -50px;}
    10%{bottom: 100px;}
    90%{bottom: 100px;}
    100%{bottom: -50px;}
}
.Screen{
    height: 100vh;
    width: 100vw;
    background-color: #4589ff;
    position: absolute;
    opacity: 1;
    animation-name: opacity;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    z-index: 199;
}
.logoWhite{
    position: absolute;
    top: calc(50% - 166px);
    left: calc(50% - 133px);
    opacity: 1;
    animation-name: position;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    z-index: 199;
}
.logoBlue{
    position: absolute;
    top: calc(50% - 166px);
    left: calc(50% - 133px);
    opacity: 0;
    animation: positionBlue;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    z-index: 199;
}
.mainWindow{
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.signIn{
    display: flex; 
    align-items: center; 
    gap: 20px; 
    position: absolute; 
    top: 67px; 
    right: 86px;  
}
.mainWindowBlue{
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4589ff;
}
.loginBox{
    width: 652px;
    height: 457px;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    position: relative;
}
.loginBox h2{
    font-size: 40px;
    margin-top: 50px;
    margin-bottom: 20px;
}
.loginBox input{
    width: 422px;
    height: 49px;
    gap: 10px;
    border: transparent;
    border-bottom: 1px solid #D1D1D1;
    margin: 10px 0;
}
.remember{
    display: flex;
    align-items: center;
    gap: 40px;
}
.remember input{
    height: 15px;
    width: 15px;
}
.remember a{
    color: #4589ff;
}
.backButton{
    position: absolute;
    left: 37px;
    top: 41px;
    cursor: pointer;
}