* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #fff;
}

.options {
    display: flex;
    list-style: none;
}

.option {
    margin: 0 25px;
    position: relative;
    border-radius: 50%;
}

.option a {
    position: relative;
    background: #fff;
    text-decoration: none;
    width: 100px;
    height: 100px;
    display: flex;
    border-radius: 20%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    transition: .3s;
}

.option a:hover {
    background: #0a548b;
}

.option a i {
    font-size: 40px;
    color: #0a548b;
    transition: .3s;
}

.option a:hover i {
    color: #fff;
}

.option a span {
    position: absolute;
    color: #fff;
    background: #0a548b;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    border-radius: 5px;
    font-weight: 600;
    visibility: hidden;
    opacity: 0;
}

.option a:hover span {
    top: 120px;
    visibility: visible;
    opacity: 1;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .4);
    transition: .3s;
}

.colorspan {
    background: #0a548b;
}

.container__nuevo {
    border: 2px solid #0a548b;
    border-bottom: none;
    border-top: none;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
    padding: 60px 0;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container__nuevo1 {
    border: 2px solid #0a548b;
    border-top: none;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
    padding: 60px 0;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container_header {
    border: 2px solid #0a548b;
    border-bottom: none;
    width: 100%;
    height: 200px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
    padding: 10px 0;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container_headerpag {
    width: 100%;
    height: 200px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
    padding: 10px 0;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*FORMULARIO*/
.form__container {
    width: 100%;
    display: grid;
    gap: 1em;
    grid-auto-columns: 100%;
}

.form__input {
    font-size: 1rem;
    padding: .8em 1em;
    outline: none;
    border: none;
    border-radius: 0.2em;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .4);
}

.form__input--mensaje {
    resize: none;
    padding: 1.8em 1em;
    margin-bottom: .5em;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .4);
}

.form__titulo {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: .4em;
    color: #fff;
    padding: .1px 0;
}

.form_cta {
    font-size: 1rem;
    background-color: #00adba;
    width: 200px;
    align-self: normal;
    color: #fff;
    border: none;
    font-weight: 300;
    padding: .7em 0;
    border-radius: .2em;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .4);
}

.form {
    background-color: #0a548b;
    width: 90%;
    margin: auto;
    max-width: 500px;
    border-radius: 1em;
    padding: 3.5em 1.5em;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .4);
}

.form__login {
    background-color: #0a548b;
    width: 90%;
    margin: auto;
    max-width: 300px;
    border-radius: 1em;
    padding: 3.5em 1.5em;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .4);
}

/*CERRAR SESIÓN*/
.bts__log {
    display: flex;
    list-style: none;
}

.btt___log {
    margin: 0 25px;
    position: relative;
    border-radius: 50%;
}

.btt__log a {
    position: relative;
    background: #fff;
    text-decoration: none;
    width: 100px;
    height: 100px;
    display: flex;
    border-radius: 20%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    transition: .3s;
}

.btt__log a:hover {
    background: #0a548b;
}

.btt__log a i {
    font-size: 40px;
    color: #0a548b;
    transition: .3s;
}

.btt__log a:hover i {
    color: #fff;
}

.btt__log a span {
    position: absolute;
    color: #fff;
    background: #0a548b;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    border-radius: 5px;
    font-weight: 600;
    visibility: hidden;
    opacity: 0;
}

.btt__log a:hover span {
    top: 120px;
    visibility: visible;
    opacity: 1;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .4);
    transition: .3s;
}