@import url("../global.css");

.grecaptcha-badge {
    visibility: hidden !important;
}

.landing {
    height: 100vh;
}

.landingbtn {
    font-family: 'centra-no2', sans-serif;
    background-color: rgba(255, 255, 255, 0.6);
    color: #000;
    border: none;
    width: 210px;
    height: 60px;
    margin-top: 20px;
    font-size: 16px;
}

.landingbtn:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.8);
}

.simulador {
    width: 100%;
}

body {
    background-color: #aaa9a2;
    ;
}

.container {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 20px;
    top: 15vh;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 0 19px 0 rgba(0, 0, 0, .1);
    background-color: #fff;
    font-family: 'centra-no2', sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 200px;
}

.container .title {
    text-align: center;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    font-size: 20px;
    border-bottom: solid 1px;
    width: 227px;
}

.container form {
    padding: 40px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.container .item {
    flex: 1 1 auto;
    max-width: calc(33.33% - 20px);
    min-width: 150px;
    margin: 10px;
    box-sizing: border-box;
}

.item input[type="text"],
.item input[type="email"] {
    height: 25px;
    width: 210px;
    border-radius: 5px;
    border: solid 1px #333;
}

.radio-option input,
.radio-option label {
    cursor: pointer;

}

.item select {
    height: 28px;
    width: 215px;
    border-radius: 5px;
    border: solid 1px #333;
    background-color: #fff;
}

.radio-option {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
}

.container button {
    text-align: center;
    left: 50%;
    position: relative;
    transform: translate(-50%);
    font-family: 'centra-no2', sans-serif;
    border: none;
    width: 210px;
    height: 60px;
    font-size: 16px;
    background-color: #575757;
    margin-bottom: 20px;
    color: #fff;
}

.container button:hover {
    cursor: pointer;
    background-color: #6b6b6b;
}

.red {
    color: red;
}