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


/* ============= form =============== */
.container{
    width: 100%;
    height: 100vh;
    background-color: #00191f;
    display: flex;
    justify-content: center;
    align-items: center;
}

form{
    background: #eee;
    padding: 4vw 4vw;
    width: 90%; 
    max-width: 600px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;

}

form h3{
    color: #555;
    text-align: center;
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 20px;
}
form input, form textarea{
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: #f5f5f5;
    font-size: 16px;
    width:100% !important;
}
form #btn {
    color: rgb(255, 255, 255);
    font-size: 18px;
    cursor: pointer;
    width: 150px;
    padding: 15px;
    background: rgb(255, 85, 115);
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    outline: none;
    margin: 16px auto 0px;
    border-radius: 30px;
}

/* ================== form information ================= */
form a{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    text-decoration: none;
}