﻿.body, html {
    margin: 0;
}

.contactPage{
    display: grid;
    grid-template-columns: 50% 50%;
}

.contactForm{
    padding: 5%;
    color: white;
}

fieldset {
    border: 1px solid white; 
    padding: 0px 10px 10px 10px;
    margin: 5%;
}

    fieldset legend {
        display: inline-block; 
        padding: 0 5px; 
        background-color: white; 
        margin-left: 5%; 
        font-weight: bold;
        position: relative;
        top: -10px;
        color: black;
        width: 40%;
        text-align: center;
    }

    .inputs {
        padding: 5%;
    }

.contactSocials {
    padding: 15%;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 10%;
}

.contactSocials a img {
    width: 200px;
    height: 200px;
    margin-bottom: 30%;
}

    .contactSocials img:hover {
        transform: scale(1.3);
        cursor: pointer;
        box-shadow: 10px 10px 10px white;
    }

.unreadMessage{
    background-color: lightblue;
    font-weight: bold;
}

@media (max-width: 980px) {
    .contactPage {
        display: grid;
        grid-template-columns: 100%;
    }

    .row {
        display: grid;
    }

    .col-6 {
        width: 100%;
        margin-bottom: 5%;
    }

    fieldset legend {
        width: 60%;
    }
}
