@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background{
    object-fit: contain;
    position: fixed;
    z-index: -1;
}

.container{
    max-width: 1280px;
    margin: 0 auto;
}

form{
    background-image: linear-gradient(to top, #ffffffc7, transparent);
    max-width: 500px;
    height: 450px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 2px 10px black;

}

form h1{
    color: #01ebc4e3;
    text-shadow: 1px 2px 3px black;
    text-align: center;
    font-size: 1.8rem;
    text-transform: uppercase;
}

form p{
    color: rgba(255, 255, 255, 0.849);
    font-size: 1.0rem;
    text-shadow: 1px 1px 1px black;
    text-align: center;
    margin: 20px 0;
}

.input-single{
    margin: 40px;
    border: none;
}

.input-field{
    width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
}

label{
    font-weight: bolder;
    text-transform: lowercase;
}

.btn-send input{
    background: #01ebc4e3;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
}

@media (max-width:420px) {
    .form-container{
        transform: scale(0.9);
        transition: all 0.3s ease-in-out;
    }

    .btn-send input{
        padding: 10px 40px;
        float: inline-end;
    }
}