@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;700&display=swap'); */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #00ff22;
    min-height: 100vh;
    min-width: 300px;
    width: 100%;
    display: flex;
    padding: 1em 1em;
    font-family: 'Montserrat', sans-serif;
    /*font-family: 'Roboto Mono', monospace;*/
}

TH{
    text-align: left;
}

input, select{
    width: 100%;
    box-sizing: border-box;
}
button{
    background-color: transparent;
    border: none;
}

.form{
    background-color: #fff;
    width: 100%;
    margin: auto;
    max-width: 500px;
    border-radius: 1em;
    padding: 1em 1em;
}

.form__imagen{
    border: none;
    padding: 0em 0em;
    cursor: pointer;
}

@media (max-width:250px){
    .form{
        padding: 3.5em 1em;
    }
}