.contact {
    height: 60vw !important;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

input {
    color: white;
    padding: 10px 0;
    font-size: 18px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--white);
    outline: none;
}

input::placeholder, .hint {
    color: grey;
}

.hint {
    font-size: 12px;
}

.send_cover {
    display: flex;
    gap: 10%;
    margin-top: 2vh;
}

.send_button {
    text-transform: uppercase;
    font-size: 18px;
    color: var(--green);
}

.input_scope {
    margin-right: 2vw;
    width: 25vw;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    text-transform: none;
}

.contact .logo_icon {
    width: auto;
    height: 10vh;
    animation: spin 2s linear infinite;

}

.logo_title_cover {
    display: flex;
    gap: 5vw;
    justify-content: center;
    align-items: center;
}


/* ======  HOVER EFFECTS ====== */


.send_cover:hover {
    padding-left: 10px;
}

  
