*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.home{
    background-image:linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url('./img/bg.jpg');
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
}
.home h1{
    text-align: center;
    color: #fff;
    padding-top: 4rem;
    font-size: 40px;
}
.login h3{
    text-align: center;
    color: #fff;
    margin-top: 6rem;
    font-size: 30px;
}
.login {
    display: flex;
    flex-direction: column;
    text-align: center;

}
.login input {
    width: 300px;
    height: 40px;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid red;
    color: #fff;
}
.login .button-submit{
    width: 100px;
    height: 40px;
    margin: 0 auto;
    margin-top: 2rem;
    background: red;
    border: none;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease-in-out;
    outline: none;
}
.login .button-submit:hover{
    background: transparent;
    border: 1px solid red;
}