:root {
    /* Color list */
    --main-light-color: #d5e4ed;
    --main-white-color: #fcfcfc;
    --main-dark-color: #6f6a51;
    --main-secondary-color: #a6ce38;
    --main-detail-color: #ee3f27;
}

@font-face {
    font-family: 'Comfortaa';
    src: url(fuentes/Comfortaa.ttf);
}

body {
    width: 100%;
    height: 100vh;
}

#container {
    width: 100%;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    height: 100%;
    padding: 3%;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    height: auto;
    padding: 2%;
    background-color: var(--main-white-color);
}

.row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding:2%;
    align-items: end;
}

.form-container legend {
    color: var(--main-dark-color);
    padding: 1px;
    font-weight: bold;
    margin: 3%;
}

.form-container label {
    padding: 10px 0 10px 0;
}

.form-container input,
.form-container select {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 90%;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid #757575;
    margin-bottom: 2px;
}

.form-container input:focus {
    outline: none;
}

.form-container button {
    width: 100px;
    height: 50px;
    overflow: hidden;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #DDD;
    color: var(--main-dark-color);
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    background-color: rgba(200, 200, 200, 0.5);
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.5s ease-in-out;
    margin: 10px 5px 0 0;
}

.actions {
    display: flex;
    justify-content: flex-end;
}
