@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/**Styling**/
.logo{
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 100px;
    border-radius: 10px;
}

*{
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

p{
    font-family: "Poppins", sans-serif;
}

body{
    background-color: #f5f6fb;
    color: #000;
}

.go{
    width: 70%;
    height: 50px;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 40px;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 500ms;
}

.go:hover{
    opacity: 0.5;
}

#unlockButton{
    width: 70%;
    height: 50px;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 40px;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 500ms;
}

#unlockButton:hover{
    opacity: 0.5;
}

.logo_text{
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
    color: #000;
    margin-top: 100px;
    width: 100%;
    text-align: center;
}

.classic_input{
    color: #000;
    background-color: transparent;
    font-family: "Poppins", sans-serif;
    width: 70%;
    margin-left: auto;
    border-radius: 10px;
    margin-right: auto;
    font-weight: bold;
    font-size: 20px;
    padding: .5vh;
    border: none;
    border: 2px solid #505050;
    margin-top: 30px;
    display: block;
}

input:focus{
    outline: none;
}