body{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Poppins, sans-serif;
    background-color: rgba(2, 2, 130, 0.74);
}
#title,#description{
    text-align: center;
    color: white;
}
#description{
    font-size: larger;
    font-style: italic;
}
#main{
    width: 600px;
    padding: 35px 40px;
    border-radius: 5px;
    background-color: rgba(23, 23, 64, 0.801);
    margin: 30px auto;
    color: white;
    font-size: 20px;
}
input,label{
    margin: 8px;
}
label{
    font-size: 20px;
}
input[type="text"],
input[type="email"],
input[type="number"],
textarea
select{
    width: 98%;
    padding: 10px;
    border-radius: 5px;
    border: 0px solid white;
    font-size: 15px;
}
select{
    margin: 8px;
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border-radius: 5px;
}
textarea{
    margin: 8px;
    font-size: 15px;
}
#submit{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: rgb(56, 205, 56);
    color: white;
    height: 50px;
    border: none;
    margin-left: 10px;
    margin-top: 20px;
}
input[type="radio"],
input[type="checkbox"]{
    width: 17px;
    height: 17px;
}
body::before{
    content: '';
    background-image: url(images.jpg);
    z-index: -1;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}