@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;
    padding: 0;
    font-family: Poppins, serif;
    box-sizing: border-box;
}
 body{
    background-color: rgb(35, 32, 54);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height:100vh ;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 50px;
    padding: 20px;
    width: 100%;
    
}

h2{
    font-size: 3vw;
    font-weight: 200;
    margin-bottom: 20px;
}
.text{
    line-height: 30px;
    color: #949494;
}
.email-form input, button{
    padding: 15px;
    font-size: 15px;
    border: none;
    outline: none;
    margin-top: 40px;
    margin-bottom: 30px;
}
.email-form input{
    width: 70vh;
    position: relative; 
    border-radius: 3px 0 0 3px ;
}

button{
    background-color: rgb(225, 37, 37);
    color: #fff;
    cursor: pointer;
    border-radius: 0 3px 3px 0 ;
}
button:hover{
    background-color:rgb(184, 31, 31); ;
}
.lower-text , .copyright
{
    font-size:12px ;
    color: #a5a5a5;
}

.copyright{
    color: #6d6d6d;
}

