*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Times New Roman', Times, serif;
}



.container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(82, 81, 81, 0.185), rgba(133, 132, 132, 0.3)),
    url('') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

form{
    background: transparent;
    display: flex;
    flex-direction: column;
    padding: 3vw 3vw;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 20px;
    border: 2px solid black;
    border-radius: 2em;
}

form h3{
    color: black;
    font-weight: 600;
    font-size: 1.5em;
    text-align: center;
    font-family:'Times New Roman', Times, serif;
}


form h4{
    color: rgba(199, 144, 25, 0.658);
    font-weight: 400;
    font-size: 1.5em;
    text-align: center;
    font-family:'Times New Roman', Times, serif;
}

form input, form textarea{
    border: 0;
    margin: 0.5em 0;
    padding: 5px;
    outline: none;
    background: #fffefe;
    font-size: 16px;
    border-radius: 1em;
    transition: all 0.1s;
}


form input:focus, form textarea:focus{
    background: #eeeeee; 
}

form textarea{
    resize: none;
}

form button{
    padding: 0.5em;
    background: black;
    color: white;
    font-size: 1.2em;
    border-radius: 0;
    outline: none;
    cursor: pointer;
    width: 10em;
    margin: 1em auto 0;
    border-radius: 2em;
}

form button:hover{
    background: white;
    color: black;
}

span {
    color: #40ff;
    align-items: center;
    text-align: center;
    margin-top: 1.5em;
}


.btn {
    padding: 0.5em;
    text-decoration: none;
    text-align: center;
    background: black;
    color: white;
    font-size: 1.2em;
    border-radius: 0;
    outline: none;
    cursor: pointer;
    width: 10em;
    margin: 1em auto 0;
    border-radius: 2em;
}

.btn:hover {
    background: white;
    color: black;
}


select{
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 200;
    border-radius: 2em;
}



@media screen and (max-width: 767px) {
    form{
        font-size: 10px;
        padding: 5vw 3vw 0.5vw 5vw;
        
    }
        
}