.contact-section{
    position: relative;
}

.contact-info > *{

    color: var(--color-pink);
}

    
    .contact-form label{
        color: var(--color-white);
    }

.contact-info h3{
    line-height: 1.5;
}

.contact-info{
    margin: 1rem;
    padding: 2rem 0;
}



.contact-form::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: var(--bg-black);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);


}

.contact-form form{
    margin: 1rem;
    padding: 1rem;
}

.contact-form form > *{
    display: block;
}

.contact-form form label{
    margin: 1rem;
}

.contact-form form input:not(:last-child),
textarea{
    width: 60%;
    padding: 0.5rem;
    margin: 1rem;
    border: none;
}

.contact-form form input:not(:last-child):hover,
.contact-form form input:not(:last-child):focus,
textarea:hover,
textarea:focus{
    transform: scale(1.03,1.03);
    border-bottom: var(--color-pink) 4px solid;
}


[type="submit"]{
    width: 100px;
    height: 50px;
    margin:1rem;
}

.social-logo img{
    margin: 0.2rem;
    padding: 0.2rem;
    width: 30px;
    height: 30px;
    transition: transform 300ms ease-in;
}


.social-logo img:hover{
    cursor: pointer;
    transform:scale(1.2,1.2);
}

.footer{
    color: white;
}



@media (min-width:600px){

    .contact-form label{
        color: var(--color-white);
    }

    .contact{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .contact-info{
        width: 50%;
        text-align: center;
    }

    .contact-section p,
    .contact-section h3{
        color: var(--color-white);
    }
    
    .contact-form{
        width: 50%;
    }

    .footer{
        margin-left: 1rem;
        padding: 1rem;
    }

}