@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap');

*{
    margin: 0;
    padding: 0;
}
#banner{
    display: flex;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
}
.logo{
    height: 100%;
}
.logo > img{
    width: 100%;
    height: 100%;
}
#banner::before{
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(to top,rgba(0,0,0,.8) 0,rgba(0, 0, 0, 0.473) 60%,rgba(0,0,0,0.8) 100%), url(../Assets/banner.jpg);
    width: 100%;
    height: 100vh;
    z-index: -1;
    text-align: center;
    background-repeat: no-repeat;
    background-size: 100%;
}
.buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70%;
    width: 30%;
}
.buttons > button{
    background-color: red;
    font-size: 20px;
    border: none;
    color: white;
    margin: 0px 5px;
    width: 30%;
    height: 40%;
    cursor: pointer;
    transition: 0.5s ease;
}
.login{
    background-color: transparent !important;
    border: 2px solid white !important;
}
.upper{
    display: flex;
    width: 100%;
    height: 20%;
    justify-content: space-between;
}
.middleBanner{
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}
.middleBanner>h2{
    font-size: 50px;
    width: 45%;
    text-align: center;
    font-weight: bold;
    font-family: 'Quicksand', sans-serif;
}
.middleBanner > p{
    font-size: 20px;
    font-family: 'Inter', sans-serif;
}
#inputs{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 35%;
}
#inputs > p{
    font-size: 20px;
    margin: 10px 0px;
    font-family: 'Inter', sans-serif;
}
.innherinputs{
    width: 50%;
    display: flex;
    height: 50%;
}
.innherinputs > input{
    width: 70%;
    height: 60%;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 0px 10px;
}
.innherinputs > button{
    background-color: red;
    color: white;
    outline: none;
    border: none;
    width: 30%;
    height: 60%;
    font-size: 20px;
    margin: 0px 5px;
    cursor: pointer;
    transition: 0.5s ease;

}
.innherinputs > button:hover , .buttons > button:hover{
    background-color: rgb(214, 2, 2);
    transition: 0.5s ease;
}