*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    overflow:hidden;
    color:#fff;
}

.logo {
    width: 450px;
    margin: 20px auto;
    text-align: center;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
	border-radius: 10px;
}

#bg-video{
    position:fixed;
    right:0;
    bottom:0;
    min-width:100%;
    min-height:100%;
    object-fit:cover;
    z-index:-2;
}

.overlay{
    position:fixed;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    z-index:-1;
}

.content{
    width:100%;
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

h1{
    font-size:4rem;
    font-weight:300;
    margin-bottom:20px;
    animation:fadeInDown 1s ease;
}

p{
    max-width:700px;
    font-size:1.2rem;
    line-height:1.8;
    margin-bottom:40px;
    animation:fadeInUp 1.2s ease;
}

form{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
    animation:fadeIn 2s;
}

input{
    width:320px;
    padding:15px;
    border:none;
    border-radius:50px;
    outline:none;
    font-size:16px;
}

button{
    padding:15px 30px;
    border:none;
    border-radius:50px;
    background:#ff6b00;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#ff8f3d;
    transform:translateY(-2px);
}

.loader{
    display:flex;
    margin-bottom:35px;
}

.loader span{
    width:14px;
    height:14px;
    margin:0 6px;
    border-radius:50%;
    background:#fff;
    animation:bounce 1.2s infinite;
}

.loader span:nth-child(2){
    animation-delay:.2s;
}

.loader span:nth-child(3){
    animation-delay:.4s;
}

.loader span:nth-child(4){
    animation-delay:.6s;
}

.loader span:nth-child(5){
    animation-delay:.8s;
}

@keyframes bounce{
    0%,80%,100%{
        transform:scale(.6);
        opacity:.5;
    }

    40%{
        transform:scale(1.2);
        opacity:1;
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@keyframes fadeInDown{
    from{
        transform:translateY(-40px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }
}

@keyframes fadeInUp{
    from{
        transform:translateY(40px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }
}

@media(max-width:768px){

    h1{
        font-size:2.4rem;
    }

    p{
        font-size:1rem;
    }

    form{
        flex-direction:column;
        width:100%;
    }

    input,
    button{
        width:100%;
        max-width:350px;
    }
    
    .logo {
        width: 90%;
        max-width: 250px;
        margin: 15px auto;
    }

    .logo img {
        width: 100%;
        height: auto;
    }

}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .logo {
        width: 85%;
        max-width: 280px;
    }
}