@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

:root{
    font-size: 16px;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    min-height: 100vh;
    height: fit-content;
    width: 100%;
    background-color: white;
}

form{
    max-width: 600px;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    align-items: center;
    padding: 20px 30px;
    background-color: #FAFAFD;
}
.logo-bg{
    background-color: #080A21;
    padding: 5px;
    border-radius: 5px;
    width: fit-content;
    height: fit-content;
}
.logo-bg>img{
    object-fit: cover;
    width: 200px;
}

form>div{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
form>div>span{
    background-color: #080a210a;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
form>div>span>h3{
    font-size: 1rem;
    font-weight: 500;
}
form>div>span>select{
    border: 1px solid rgba(0, 0, 0, 0.276);
    height: 45px;
    outline: none;
    color: black;
    padding: 10px 5px;
    border-radius: 5px;
}
form>div>span>select:valid{
    border-color:green;
    border-width: 2px;
}
textarea{
    border: 1px solid rgba(0, 0, 0, 0.276);
    height: 45px;
    color: black;
    padding: 10px 5px;
    border-radius: 5px;
    resize: vertical;
    min-height: 100px;
}

form:invalid .send{
    pointer-events: none;
    box-shadow: none;
    opacity: .5;
}
.send{
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    color: white;
    background-color: #1092ef;
    width: 40%;
    font-size: 1.1rem;
    font-weight: bolder;
    align-self: flex-end;
    border: none;
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.271);
    height: 40px;
    margin: 10px auto;
}

.google-message {
    font-size: .7rem;
}

form>p{
    font-weight: bolder;
    color: green;
    text-align: center;
    font-size: 1.2rem;
    width: 70%;
}