* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #989797;
}

.checkbox {
    display: none;
}

.container {
    display: flex;
    position: absolute;
    top: 30vh;
    left: 20%;
    background-color: #fff;
}

.container .zona_1 {
    padding-right: 20px;
}

.container .zona_2 {
    padding-left: 20px;
}

.zona_1 .photo {
    display: flex;
}

.photo img {
    width: 400px;
}

.zona_2 .title {
    padding: 10px;
}

.title h2 {
    font-family: Arial;
}

.zona_2 .inputs {
    display: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.inputs .label {
    width: 200px;
    font-family: Arial;
    font-size: 20px;
    border: 1px solid;
    border-radius: 2px;
    background-color: #D8D7D7;
}

.inputs .menu-button {
    background: #D8D7D7;
    width: 200px;
    font-size: 20px;
    border-radius: 3px;
    cursor: pointer;
    z-index: 10;
}

.inputs .options {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 200px;
    z-index: 1;
}

.show {
    display: flex !important;
    flex-direction: column;
}

.inputs .options a {
    background: #fff;
    position: relative;
    top: 25px;
    color: #000;
    padding: 5px 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid;
    font-size: 20px;
    text-align: center;
    font-family: Arial;
    z-index: 10;
}

.inputs:hover .options a:hover {
    background-color: #989797;
    color: #fff;
    width: 200px;
}

.inputs .input {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    width: 200px;
    font-size: 20px;
    height: 30px;
}

.input input {
    margin-bottom: 30px;
    font-size: 20px;
}

.input .validate {
    z-index: 0;
}