html, body, #root {
    min-height: 100vh;
}

#root {
    display: grid;
    grid-area: "a"
    "b";
    grid-template-rows: auto 1fr;
}

.contact__header {
    text-align: center;
}

#contact {
    width: 100%;
    margin: auto;
    padding: 30px 0;
    color: #fff;
}

.contact__terminal {
    margin: auto;
    width: 70%;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.terminal__bar {  
    display: flex;
    width: 100%;
    height: 30px;
    align-items: center;
    padding: 0 8px;
    box-sizing: border-box;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #0b201e;
}

.bar__buttons {  
    display: flex;  
    align-items: center;
}

.bar__button {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    padding: 0;  
    margin-right: 5px;  
    font-size: 8px;  
    height: 12px;  
    width: 12px;  
    box-sizing: border-box;  
    border: none;  
    border-radius: 100%;
    text-shadow: 0px 1px 0px rgba(255,255,255,0.2);
    box-shadow: 0px 0px 1px 0px #41403A, 0px 1px 1px 0px #474642;
}

.bar__button:hover {  
    cursor: pointer;
}

.bar__button--exit {
    background: #f37458;
}

.bar__user {
    font-weight: bold;
    color: #d5d0ce; 
    margin-left: 6px;
}

.terminal__body {
    border-radius: 0 0 5px 5px;
    background: #1b413b;
    padding: 5px;
}

.information {
    text-align: center;
    font-style: italic;
    padding: 0 10px;
}

.reset {
    display: block;
    width: fit-content;
    margin: auto;
    font-size: 15px;
    background: #061816;
    box-shadow: 1px 1px 1px #607975;
    padding: 10px 15px;
    border-radius: 10px;
}

.reset:hover {
    cursor: pointer;
    opacity: 0.8;
}

/* Form + Fields */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.field {
    display: flex;
    flex-direction: column;
    padding: 3px 0;
    width: 60%;
    margin: 10px 0;
}

.required {
    color: red;
    font-weight: bold;
}

label {
    margin-bottom: 3px;
}

input, textarea, select {
    font-size: 17px;
    padding: 8px;
    margin: 5px 0;
    background-color: #061816;
    border: 1px solid #c4c4c4;
    color: white;
    font-family: "Ubuntu Mono", monospace;
}

textarea {
    height: 300px;
}

.submit {
    font-size: 18px;
    color: white;
    font-weight: bold;
    margin: 20px auto;
    padding: 10px;
    background-color: #4d9905;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-family: "Ubuntu Mono", monospace;
}

.submit:hover {
    opacity: 0.8;
}

.resp_mess {
    font-size: 18px;
    font-style: italic;
    text-align: center;
    font-weight: bold;
    padding: 3px;
}

.failed {
    color: rgb(255, 102, 0);
}

::placeholder {
    color: rgba(255, 255, 255, 0.685);
}

/* Responsive */
@media (max-width: 1200px) {
    .field {
        width: 80%;
    }
    .footer {
        flex-direction: column;
    }
    .footer__legal {
        margin-top: 50px;
    }
}

@media (max-width: 900px) {
    .field {
        width: 90%;
    }
    .contact__terminal {
        width: 95%;
    }
    .footer__librechoice {
        font-size: 65px;
    }
}