body{
    margin: 0px;
    font-family: 'Roboto', sans-serif;
}

*:focus {
    outline: none;
}

.auth-form-holder{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("../img/auth_bg.webp");
    background-size: cover;
}

.auth-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ff5e00b0;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.auth-form>input{
    width: 350px;
    font-size: 20px;
    border: none;
    padding: 10px;
    border-radius: 10px;
}

.auth-form>button{
    width: 100%;
    font-size: 20px;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}