﻿dialog:not([open]) {
    display: none;
    z-index: 0;
}

dialog {
    width: 100%;
    background-color: hsl(0 0% 82.7 / 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid lightgray;
    padding: 10rem 2rem 10rem 2rem;
}

.modalContact {
    background-color: hsl(0 0% 82.7 / 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px;
    margin-top: 1rem;
    padding:2rem;
}

.contactForm {
    padding: 1rem;
    background-color: whitesmoke;
    border-radius: 10px 10px;
}

.contactForm__Title {
    text-align: center;
    font-size: 2rem;
    margin: 2rem auto 2rem auto;
}

.contactForm__status {
    margin: 2rem;
}

.contactForm__fields {
    width: 80%;
    min-width:10rem;
    max-width: 60rem;
}

.contactForm__field {
    margin: 0.1rem;
    width: 100%;
}

textarea {
    height: 10rem;
}
.contactForm__info {
    font-size: 0.8rem;
    font-weight: lighter;    
}
