@font-face {
    font-family: "Satoshi-Variable";
    src: url("../fonts/Satoshi-Variable.ttf");
}
*{
    margin: 0;
    box-sizing: border-box;
    font-family:  Satoshi-Variable , sans-serif;
}


.container{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.image {
    height: 130px;
    width: 130px;
    margin-bottom: 50px;
}

input{
    outline: none;
    width: 280px;
    margin-bottom: 10px;
    border: 1px solid rgb(148, 145, 145);
    border-radius: 50px;
    padding: 16px 16px;
}
input::placeholder{
    font-size: 20px;
}

.label {
    color: black;
    font-size: 20px;
    margin-right: auto;
    font-weight: 200;
    margin-bottom: 10px;
}

.button{
    outline: none;
    border:none;
    border-radius: 32px;
    padding: 16px;
    background-color: #E2E2E2;
    color: #858585;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;

}
.button:active{
    transform: translateY(2px);
}

form{
    display: flex;
    flex-direction: column;
}

div[role="contentinfo"] {
    display: none;
}
