/* Created by Dheerendra Kushwaha */

*{
    margin: 0;
    padding: 0;
    overflow: hidden;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: rgb(196, 4, 62);
    text-align: center;
    font-family: "Poppins", sans-serif;
    transition: all ease 1s;
}
.subscribe-container{
    width: auto;
    height: auto;
    display: flex;
    color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.subscribe-email{
    width: 300px;
    height: 35px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
}
.email-icon{
    width: 50px;
    height: 100%;
    line-height: 40px;
    color: rgb(196, 4, 62);
    background-color: rgb(248, 240, 240);
}
.email-id{
    width: 180px;
    height: 100%;
}
.email-id input{
    width: 100%;
    height: 100%;
    padding-left: 10px;
    border: none;
    outline: none;
}
.subscribe-btn{
    width: 70px;
    background-color: rgb(196, 4, 62);
    color: #fff;
    font-size: 12px;
    border: 2px solid #fff;
    border-radius: 0px 5px 5px 0px;
    outline: none;
    cursor: pointer;
}
.subscribe-btn:active{
    transform: scale(.95);
}
.popup-container{
    width: 280px;
    height: 180px;
    padding: 10px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    position: relative;
    bottom: 0px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: animate .5s;
    z-index:2;
}
@keyframes animate {
    0%{
          bottom: -500px;
          opacity:0;
    }
    100%{
          bottom: 0px;
          opacity:1;
    }
}
#continue-btn{
    width: 100px;
    padding: 8px;
    margin-bottom: 15px;
    background-color: rgb(196, 4, 62);
    color:#fff;
    border:none ;
    outline:0;
    border-radius: 20px;
    line-height: 15px;
    font-size: 10px;
}
small{
    font-size: 10px;
}
p{
    margin: 5px;
    font-size: 14px;
}
.fa{
    color:rgb(196, 4, 62);
}