*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}


body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container{
    width: 300px;
    height: 300px;
    background-color: white;
}

.container-form h3{
    text-align: center;
    margin:0 15px 15px;
}


.container-form{
    background-color: black;
    padding: 30px;
    border-radius: 10px;
    color: white;
    transition: all 1s ease-out;
}

.container-form:hover{
    transform: scale(1.1);
}

.login-btn{
    text-decoration: none;
    background-color: red;
    padding: 10px;
    margin-left: 50px;
    border-radius: 10px;
    transition: all 1s ease-out;
    box-shadow: 0 6px 6px black;
}

.login-btn a{
    text-decoration: none;
    color: white;
    cursor: pointer;
     
}


.login-btn:hover{
     transform: scale(1.1);
}

.label{
    border-radius: 4px;
    border: none;
    height: 20px;
    margin: 15px;
}
