*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    min-height: 100vh;
    display:flex;
    justify-content: center;
    align-items: center;
}


.main-content{
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content img{
    width: 40%;
    min-width: 180px;
}

.main-content h2 {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #fff;
    margin-top: 30px;
    text-align: center;
}

.main-content small{
    margin-bottom: 30px;    
}

.main-content form{
    width: 70%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.main-content form input{
    width: 100%;
    height: 35px;
    border: 1px solid #3f3f3f;
    padding: 4px;
    outline: none;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;

}

.main-content form button{
    background-color: #df020a;
    color: #fff;
    height: 40px;
    outline: none;
    border: none;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition:all 1s;
}

.main-content form button:hover{
    filter: brightness(2);
}


.error-message{
    color: #fff;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;

}