body {
    font-family: 'Roboto Condensed', sans-serif;
    color: #000000;
    background-color: #FFFFFF;
    padding: 0;
    margin: 0;
    font-size: 16px;
}
body * {
    box-sizing: border-box;
}
body main {
    max-width: 700px;
    margin: auto;
}
body img {
    display: block;
    margin: auto;
    padding-top: 10px;
}
body header {
    position: relative;
}
header .text_box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}
header .subtitle {
    font-size: 0.45em;
    padding-top: 10px;
    font-style: italic;
}
header .train {
    font-size: 0.45em;
    padding-top: 5px;
}
section.form {
    padding: 20px 30px;
    margin-bottom: 40px;
}
form input,
form select {
    display: block;
    width: 100%;
    padding: 5px;
    margin-top: 10px;
    border: 1px solid #000000;
    color: #000000;
    font-size: 17px;
    border-radius: 0;
}
form input {
    background-color: #FFFFFF;
    display: inline;
}
form input[type="checkbox"] {
    width: auto;
}
form input::placeholder {
    color: #000000;
    font-weight: normal;
}
form input:-ms-input-placeholder {
    color: #000000;
    font-weight: normal;
}
form select {
    position: relative;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
}
form .custom_select {
    position: relative;
}
form .custom_select::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 0;
    width: 1em;
    height: 100%;
    display: block;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 36 36'%3E%3Cpath fill='%23000000' d='M10.5 15l7.5 7.5 7.5-7.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1.2em auto;
    background-position: center;
    z-index: -1;
}
form select::-ms-expand {
	display: none;
}
form input:not(#condiciones):focus,
form select:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(255, 255, 255, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	outline: none;
}
form select option {
    color: #303030;
}
form select option:first {
    color: #000000;
}
/* Disabled styles */
form select:disabled,
form select[aria-disabled=true] {
	color: gray;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
	  linear-gradient(to bottom, #000000 0%,#e5e5e5 100%);
}
form select:disabled:hover,
form select[aria-disabled=true] {
	border-color: #aaa;
}
form #other {
    background-color: #000000;
    color: #FFFFFF;
    display: none;
}
form input#other::placeholder {
    color: #FFFFFF;
}
form input#other:-ms-input-placeholder {
    color: #FFFFFF;
}
form .condiciones {
    padding: 20px 0;
}
form .condiciones a {
    color: #000000;
}
form .signup_button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 50px;
    outline: none;
	border: 1px solid black;
}
form .signup_button:hover {
    background-color: #ffffff;
    color: #000000;
}
@media screen and (min-width: 375px) {
    header .text_box {
        font-size: 48px;
    }
}
@media screen and (min-width: 700px) {
    header .text_box {
        font-size: 80px;
    }
    header .subtitle,
    header .train {
        font-size: 0.3em;
    }
    form input,
    form select {
        font-size: 20px;
        padding: 8px;
    }
}