main{
    height: 100vh;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg,#9b51e0,#f41e92);
}
#canvas{
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    z-index: 1;
}
#form-login{
    font-family: "Roboto",sans-serif;
    width: 300px;
    max-width: calc(100vw - 20px);
    background-color: #fff;
    box-shadow: 0px 5px 20px 0px #00000025;
    padding: 15px;
    border-radius: 2px;
    z-index: 2;
}
#form-login label{
    font-size: 14px;
    margin-bottom: 3px;
}
#form-login input{
    border-radius: 2px;
}
#form-login input::placeholder{
    font-size: 12px;
}
#form-login button{
    border-radius: 2px;
}
#view-password{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
}
.notifycation {
    position: fixed;
    right: -350px;
    top: 10px;
    width: 300px;
    opacity: 0;
    z-index: 1000;
}

.notifycation.animate {
    animation: notifycation 3s linear;
}
@keyframes notifycation {
    0% {
        opacity: 0;
        right: -350px;
    }

    10% {
        opacity: 1;
        right: 10px;
    }

    90% {
        opacity: 1;
        right: 10px;
    }

    100% {
        opacity: 0;
        right: 10px;
    }
}