@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    box-sizing: border-box;
}
body{

    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding: 1rem;
    color: white;
    background-color: black;

}
body::before{
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-image: url('sunsetBG.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover ;

   
}

.title{
    font-weight: 600;
    font-size: 2rem;
}
.hub{
    color:rgb(244, 255, 35);
}
label{
    display: flex;
    font-size: 1.0rem;
    margin-bottom: 0.5rem;
}
.container{
    width: 100%;
    max-width: 430px;
    margin: 0.125rem auto;
    padding: 2rem;
    background: rgba(17, 17, 17, 0.705);
    border-radius: 20px;
}
input,button{
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
header{
    text-align: center;
    padding:  0 0.625rem;
    margin-bottom: 0.1rem;
}
@media(min-width:480px){
    form{
        padding: 3rem 0 0 0;
    }
}

.formControl{
    width: 100%;
    display: block;
    height: 2.35rem;
    padding: 0.375rem 0.75rem;
    background: white ;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    outline: none;
    margin-bottom: 1rem;
    
}

.checkbox{
    display:inline-block;
    margin-right:0.355rem;
    min-height: 0.7rem;
}


.checkContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn{
    padding: 5px 30px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    margin-top: 3rem;
    
}
.btn:hover{
background-color: rgb(191, 191, 191);
}

.checkContainer a{
    text-decoration: none;
    color: aliceblue;

}
.checkContainer a:hover {
    text-decoration: underline;
}


@media (min-width:800px){
    .container{
        max-width: 440px;
        padding:2rem;
    }
}