.content-contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 90vh;
    width: 95%;
    border-radius: 15px;
    background-color:  rgba(255, 255, 0, 0.445);
    overflow: auto;
    scrollbar-width: 0px;
}

input,textarea{
    width: 100%;
    outline: none;
    padding: 12px 20px;
    margin: 6px 0;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid rgba(126, 121, 121, 0.486);
    font-weight: bold;
    transition: all 0.5s;
}

textarea{
    resize: none;
}

input[type=email]:focus,input[type=text]:focus,textarea:focus {
    background-color: #e4474769;
    color: white;
}

form{
    width: 40%;
}

.button{
    cursor: pointer;
    margin-bottom: 10px;
}