/* Video Background */
#contact-video{
    padding-top: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.con-form{
    padding-top: 90px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box{
    width: 50%;
    max-width: 400px;
    background-color: rgba(255, 254, 254, 0.4);
    border-radius: 8px;
    padding: 3px 25px;
    margin-inline: 15px;
}

.form-box header h1{
    text-align: center;
    color:rgb(110, 36, 36);
}

.form-box form{
    margin-block: 25px;
}

input{
    width: 100%;
    padding: 18px 16px;
    border: none;
    outline: none;
    border-radius: 4px;
    background-color:rgba(255, 254, 254, 0.76);
    font-size: 16px;
    margin: 10px 0;
}

.links a{
    text-decoration: none;
    color: rgb(110, 36, 36);
    font-size: 14px;
}

input[type="button"]{
    margin-block: 24px;
    background-color: gold;
    color: green;
    font-size: 20px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 8px;
    transition: .4s;
}

input[type="button"]:hover{
    background-color: rgb(247, 238, 191);
    color:rgb(110, 36, 36) ;
}

input[id="nameField"]{
    display: none;
}

.links{
    display: flex;
    justify-content: center;

}

.links a img{
    max-height: 40px;
    margin-inline: 10px;
}

.signup{
    text-align: center;
    margin-block: 20px;
}

.signup a{
    font-size: 16px;
    font-weight: 700;
    color: #5851e3;

}

.signup a:hover{
    color: #10449a;
    text-decoration: underline 2px;
    text-underline-offset: 3.5px;
}


/* CSS to achieve responsiveness */
@media screen and (max-width:700px) {
    .form-box{
        width: 100%;
    }
}
