body{
    background-image:radial-gradient(rgb(var(--main-color)),rgb(var(--bg-color))) ;
    margin: 0;
}
.content{
    width: 100%;
    min-height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.form{
    width: 70%;
    height: fit-content;
    background-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(100px);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 25px;
padding: 50px;
padding-block: 0;
box-sizing: border-box;
}
table{
    width: 100%;
    height: 100%;
}
textarea{
    width: 100%;
    border: none;
}
input[type=text],
input[type=email]
{
    width: 100%;
    border: none;
}
td{
   padding: 5px;
   box-sizing: border-box;
}
th{
    height: 50px;
    color: #fff;
    text-shadow: 1px 1px #000;
    font-size: xx-large;
}
button{
    border: none;
    background-color: rgb(var(--main-color));
    width: 100px;
    height: 50px;
    border-radius: 12px;
    color: #fff;
    text-shadow: 1px 1px #000;
    font-size: large;
}
.captcha{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width:600px) {
.form{
    width: 98%;
    padding: 0;
}
button{
    width: 75px;
    font-size: medium;
}
}