.form-container::before{
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    transform: translate(-39px, 166px);
    background: url(../src/wr_desc_img.png);
    background-size: cover;
    opacity: 0.2;
    pointer-events: none;
}
.form-details, .form-wrapper{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-content: center;
    justify-content: space-evenly;
    width: 400px;
    padding: 40px 30px;
}
.form-title{
    font-size: var(--font-size-small);
    font-weight: bold;
    flex: 8;
}
.details{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    flex: 10;
}
.networks .details {
    margin: 10px;
    border-radius: 15px;
    box-shadow: 3px 3px 15px #dddddd;
    transition: .1s all ease-in;
}
.networks .details:hover {
    cursor: pointer;
    transform: scale(1.05);
}
.details i{
    font-size: var(--font-size-small);
    padding: 20px;
    min-width: 70px;
    text-align: center;
    color: var(--main-color);
}
.details.instagram{
    background: var(--pale-color-1);
}
.details.facebook{
    background: var(--pale-color-2);
}
.details.linkedin{
    background: var(--pale-color-4);
}
.detail__content{
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
    font-size: var(--font-size-small);
}
.form-wrapper{
    background: #ffffff73;
    border-radius: 30px;
    box-shadow: 2px 2px 15px #d1d1d1;
    font-size: var(--font-size-small);
}
.component-header{
    margin-top: 15px;
    font-weight: bold;
    color: var(--main-color);
}
form div{
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: stretch;
    justify-content: center;
}
input, textarea {
    border-radius: 20px;
    min-height: 1em;
    box-shadow: 2px 2px 16px #dbdbdb;
    padding: 10px;
    border: none;
}
textarea{
    width: 100%;
    height: 6em;
    resize: none;
}
input[type="submit"]{
    margin-top: 20px;
    background-color: var(--complementary-color);
}



/*

Mobile CSS

*/
@media screen and (max-width: 768px){
    .form-container::before {
        width: 469px;
        height: 570px;
        transform: translate(-20px, -600px);
    }

    .form-details::before{
        height: 196px;
        transform: translate(4px, 22px);
    }
    .form-details, .form-wrapper {
        width: 100%;
        padding: 40px 0px;
    }
    .form-wrapper {
        border-radius: 0px;
        box-shadow: none;
        background: none;
    }
}

@media screen and (max-width: 450px){
    .form-container::before {
        display: none;
    }
}