* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.login {
    width: 100%;
    height: 100vh;
    display: flex;       
    background: rgba(165, 161, 196, 1);
    background: -moz-linear-gradient(45deg, rgba(165, 161, 196, 1) 0%, rgba(58, 37, 153, 1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(165, 161, 196, 1)), color-stop(100%, rgba(58, 37, 153, 1)));
    background: -webkit-linear-gradient(45deg, rgba(165, 161, 196, 1) 0%, rgba(58, 37, 153, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(165, 161, 196, 1) 0%, rgba(58, 37, 153, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(165, 161, 196, 1) 0%, rgba(58, 37, 153, 1) 100%);
    background: linear-gradient(45deg, rgba(165, 161, 196, 1) 0%, rgba(58, 37, 153, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a5a1c4', endColorstr='#3a2599', GradientType=1);
}

.container {
    width: 400px;
    padding: 20px;
    margin: 60px auto;
    z-index: 2;
    border-radius: 10px;
    background-color: darkslateblue;
    box-shadow:
        0 1px 1px hsl(0deg 0% 0% / 0.075),
        0 2px 2px hsl(0deg 0% 0% / 0.075),
        0 4px 4px hsl(0deg 0% 0% / 0.075),
        0 8px 8px hsl(0deg 0% 0% / 0.075),
        0 16px 16px hsl(0deg 0% 0% / 0.075);

    h2 {
        margin: 20px auto;
        text-align: center;
        color: white;
    }

    div {
        display: flex;
        flex-direction: column;
        color: white;

        label {
            margin: 10px auto;
        }

        input {
            padding: 10px;
            border-radius: 5px;
            border: none;

        }

        ::placeholder {
            color: red;
        }

        p {
            margin-top: 10px;
            font-size: 10px;
        }
    }

    button {
        padding: 10px;
        width: 100%;
        margin: 30px auto;
        border-radius: 5px;
        border: none;
        background-color: blueviolet;
        color: white;
        font-size: 20px;
        cursor: pointer;

        &:hover {
            background-color: #0b6611;
        }
    }

    p {
        text-align: center;
        color: white;
        font-size: 12px;
    }
}

.popUp {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 3;
    top: 0;
    left: 0;
    display: none;

    .msg {
        width: 500px;
        height: 50px;
        padding: 10px;
        background-color: #0b6611;
        color:white;
        margin: 100px auto;
        text-align: center;
        border-radius: 5px;
        position: relative;
        animation: slideDown ease-in-out 1s;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-30rem);
    }

    100% {
        transform: translateY(0);
    }
}
.fansy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}
.phrase {
    position: absolute;
    font-size: 24px;
    white-space: nowrap;    
}