.form_container{
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    gap: 30px;
    padding-bottom: 3%;
}
.form_title{
    pointer-events: none;
    color: #FFF;
    text-align: center;
    font-size: 89px;
    font-weight: 600;
    margin-bottom: 0;
}
#fname{
    color: #FFF;
    padding-left: 50px;
    width: 517px;
    height: 60px;
    border: 0;
    border-radius: 40px;
    background: #323D48;
    
}
#email{
    color: #FFF;
    padding-left: 50px;
    width: 517px;
    height: 60px;
    border: 0;
    border-radius: 40px;
    background: #323D48;
    
}
#text{
    font-family: "Sora", sans-serif;
    padding-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
    width: 469px;
    height: 170px;
    border: 0;
    border-radius: 40px;
    background: #323D48;
    color: #FFF;
}
.form_send{

    width: 569px;
    height: 60px;
    
    margin-top: 10px;
    border-radius: 40px;
    border: 1px solid var(--Stroke, #81859D);
    background: var(--Mint);
    box-shadow: 0px 0px 20px 0px var(--Mint);

    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 60px;
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.form_send:hover{
    box-shadow: 0px 0px 20px 0px white;
   border: 2px solid white;
}
.form_social_container{
    display: flex;
    flex-direction: row;
    gap: 60px;
}
.form_icon{
    cursor: pointer;
    width: 45px;
    height: 45px;
}
.form_icon:hover{
    filter: grayscale(75%);
}