:root {
    --bg-color: rgb(241, 237, 232);
    --bg-light-color: rgb(248, 247, 245);
    --accent-color: rgb(186, 120, 95);
    --text-color: rgb(95, 95, 95);
}


.my-form {

    box-sizing: border-box;
    padding: 2.25rem;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;


}

.my-form>* {
    font-family: "Roboto Slab", serif;
    font-size: 1rem;

}

.email-input {
    width: 50%;
    border-right: none;
    border-left: none;
    border-top: none;
    border: 1px solid;
    border-radius: 4px;
    height: 2.75rem;
    outline: 2px solid transparent;
    text-align: center;
    text-wrap: wrap;

}

.email-input:hover,
.email-input:focus {
    outline: 2px solid var(--accent-color);
    border-color: var(--accent-color);
}

.submit-button {
    border-radius: 4px;
    padding: 0.5rem 1rem;
    outline: 2px solid transparent;
    border: 1px solid var(--text-color);
    background-color: white;
    color: var(--accent-color)
}

.submit-button:hover,
.submit-button:focus {
    outline: 2px solid var(--accent-color);
    border-color: var(--accent-color);
}