*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}
body{
    background: -moz-linear-gradient(45deg, #222,#94149b);
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container{
    margin-top: 50px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
}

.container .phrase{
    margin-bottom:20px;
}
.container label{
    font-weight: 600;
}

.container .form input{
    margin-bottom: 20px;
    background: transparent;
    border: 2px solid transparent;
    border-bottom:2px solid rgb(14, 42, 42);
    padding-bottom: 3px;
}
.container .form input:hover{
    color:aliceblue;
    border: 2px solid transparent;
    border-bottom:2px solid #3d1788;
    
}
.container .form input:active{
    color:aliceblue;
    border: 2px solid transparent;
    border-bottom:2px solid #3d1788;

}

.container button{
    background: transparent;
    width: 156px;
    border-color: #3d1788;
    border-radius: 5px;
    text-align: center;
    color:#3d1788 ;
    cursor: pointer;
}

.container button:hover{
    background: #3d1788;
    color: white;
    border-color: aliceblue;
}