html,
body {
    min-height: 100%;
    background: #000000;
}

body,
div,
form,
input,
select,
textarea,
p {
    padding: 0;
    margin: 0;
    outline: none;
    font-family: Roboto, Arial, sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 22px;
}

h1 {
    position: absolute;
    margin: 0;
    font-size: 32px;
    color: #0069b0;
    z-index: 2;
}

.testbox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
    padding: 20px;
}

form {
    width: 80%;
    padding: 20px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 0 5px 0 #0069b0;
}

.banner {
    position: relative;
    height: 100px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner::after {
    content: "";
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    width: 100%;
    height: 100%;
}

input,
textarea,
select {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input {
    width: calc(100% - 10px);
    padding: 5px;
}

select {
    width: 100%;
    padding: 7px 0;
    background: transparent;
}

textarea {
    width: calc(100% - 12px);
    padding: 5px;
}

.item:hover p,
.item:hover i,
.question:hover p,
.question label:hover,
input:hover::placeholder {
    color: #0069b0;
}

.name-item input:hover,
.item input:hover,
.item select:hover,
.item textarea:hover {
    border: 1px solid transparent;
    box-shadow: 0 0 6px 0 #0069b0;
    color: #0069b0;
}

.item {
    position: relative;
    margin: 10px 0;
}

input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

.item i,
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    font-size: 20px;
    color: #a9a9a9;
}

.item i {
    right: 1%;
    top: 30px;
    z-index: 1;
}

.item p {
    padding-left: 1%;
}

[type="date"]::-webkit-calendar-picker-indicator {
    right: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

input[type="time"]::-webkit-inner-spin-button {
    margin: 2px 22px 0 0;
}

input[type=radio],
input.other {
    display: none;
}

label.radio {
    position: relative;
    display: inline-block;
    margin: 5px 20px 10px 0;
    cursor: pointer;
}

.question span {
    margin-left: 30px;
}

label.radio:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #ccc;
}

#radio_5:checked~input.other {
    display: block;
}

input[type=radio]:checked+label.radio:before {
    border: 2px solid #0069b0;
    background: #0069b0;
}

label.radio:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 5px;
    width: 7px;
    height: 4px;
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    opacity: 0;
}

input[type=radio]:checked+label:after {
    opacity: 1;
}

.btn-block {
    margin-top: 10px;
    text-align: center;
}

button {
    width: 150px;
    border: none;
    border-radius: 5px;
    background: #0069b0;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background: #0069b0;
}

.alumno {
    background: #FFF;
    padding: 5px;
    margin-top: 2%;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

.titulo-alumno {
    background: #0069b0;
    color: #FFF;
    text-align: center;
    padding: 5px;
    margin-top: 2%;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

@media (min-width: 568px) {
    .city-item {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .city-item input {
        width: calc(50% - 20px);
    }
    .city-item select {
        width: calc(50% - 8px);
    }
    .city-item p {
        display: flex;
    }
    .city-item div {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

@media (min-width: 568px) {
    .name-item {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .name-item input {
        width: calc(33% - 20px);
    }
    .name-title div {
        width: 30%;
        padding-left: 1%;
    }
    .name-title {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .data-title div {
        width: 45%;
        padding-left: 1%;
    }
    .data-title {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}