body {
    font-family: "Segoe UI", sans-serif !important;
    background-color: #295669;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-repeat: repeat;
    background-size: 40px 40px;
    min-height: 100vh;
    transition: background 0.5s ease-in-out;
    overflow-x: hidden;
    animation: movePattern 30s linear infinite;
}
@keyframes movePattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}
#particles-js::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15); /* capa de oscurecimiento */
    top: 0;
    left: 0;
    z-index: 0;
}
#container_demo {
    text-align: left;
    margin: 0;
    padding: 0;
    margin: 0 auto;
}
a.hiddenanchor {
    display: none;
}
#wrapper {
    max-width: 500px;
    width: 90%;
    min-height: 500px;
    margin: 0 auto;
    position: relative;
    margin: 80px auto !important;
}

#wrapper a {
    color: rgb(95, 155, 198);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

#wrapper a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: rgb(95, 155, 198);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#wrapper a:hover {
    color: rgb(135, 196, 241);
}

#wrapper a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

#wrapper h1 {
    font-size: 48px;
    color: rgb(6, 106, 117);
    padding: 2px 0 10px 0;
    font-family: "sans-serif";
    font-weight: bold;
    text-align: center;
    padding-bottom: 30px;
}
#wrapper h1 {
    background: -webkit-repeating-linear-gradient(
        -45deg,
        rgb(18, 83, 93),
        rgb(18, 83, 93) 20px,
        rgb(64, 111, 118) 20px,
        rgb(64, 111, 118) 40px,
        rgb(18, 83, 93) 40px
    );
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
#wrapper h1:after {
    content: " ";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 10px;
    background: -moz-linear-gradient(
        left,
        rgba(147, 184, 189, 0) 0%,
        rgba(147, 184, 189, 0.8) 20%,
        rgba(147, 184, 189, 1) 53%,
        rgba(147, 184, 189, 0.8) 79%,
        rgba(147, 184, 189, 0) 100%
    );
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0%, rgba(147, 184, 189, 0)),
        color-stop(20%, rgba(147, 184, 189, 0.8)),
        color-stop(53%, rgba(147, 184, 189, 1)),
        color-stop(79%, rgba(147, 184, 189, 0.8)),
        color-stop(100%, rgba(147, 184, 189, 0))
    );
    background: -webkit-linear-gradient(
        left,
        rgba(147, 184, 189, 0) 0%,
        rgba(147, 184, 189, 0.8) 20%,
        rgba(147, 184, 189, 1) 53%,
        rgba(147, 184, 189, 0.8) 79%,
        rgba(147, 184, 189, 0) 100%
    );
    background: -o-linear-gradient(
        left,
        rgba(147, 184, 189, 0) 0%,
        rgba(147, 184, 189, 0.8) 20%,
        rgba(147, 184, 189, 1) 53%,
        rgba(147, 184, 189, 0.8) 79%,
        rgba(147, 184, 189, 0) 100%
    );
    background: -ms-linear-gradient(
        left,
        rgba(147, 184, 189, 0) 0%,
        rgba(147, 184, 189, 0.8) 20%,
        rgba(147, 184, 189, 1) 53%,
        rgba(147, 184, 189, 0.8) 79%,
        rgba(147, 184, 189, 0) 100%
    );
    background: linear-gradient(
        left,
        rgba(147, 184, 189, 0) 0%,
        rgba(147, 184, 189, 0.8) 20%,
        rgba(147, 184, 189, 1) 53%,
        rgba(147, 184, 189, 0.8) 79%,
        rgba(147, 184, 189, 0) 100%
    );
}
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");
label[data-icon="e"]::before {
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 10px;
}
label[data-icon="f"]::before {
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 10px;
}
label[data-icon="l"]::before {
    content: "\f2c6";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 10px;
}
#wrapper p:first-child {
    margin: 0px;
}
#wrapper label {
    color: rgb(0, 0, 0);
    font-weight: bold;
    position: relative;
}
.gender-checkbox {
    display: none;
}
.gender-checkbox + label {
    position: relative;
    padding-left: 30px;
    margin-right: 20px;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    font-weight: normal;
}
.gender-checkbox + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border: 2px solid #32917c;
    border-radius: 50%;
    background-color: white;
    transition: all 0.3s ease;
}
.gender-checkbox:checked + label:before {
    background-color: #2b9e98;
    border-color: #2b9e98;
}
.gender-checkbox:checked + label:after {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: white;
}
.gender-options {
    text-align: center;
}
label[for="gender"] {
    display: block;
    text-align: left;
}
::-webkit-input-placeholder {
    color: rgb(190, 188, 188);
    font-style: italic;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
    color: rgb(190, 188, 188);
    font-style: italic;
}
input {
    outline: none;
}
#wrapper input:not([type="checkbox"]) {
    width: 100%;
    max-width: 450px;
    margin: 8px auto;
    display: block;
    padding: 10px 10px 10px 35px;
    border: 1px solid #b2b2b2;
    border-radius: 6px;
    font-size: 16px;
    background-color: #fff;
    box-shadow: inset 0 1px 4px rgba(168, 168, 168, 0.6);
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
}
#wrapper input:not([type="checkbox"]):focus {
    border-color: #3d9db3;
    box-shadow: 0 0 6px rgba(61, 157, 179, 0.5),
        inset 0 1px 4px rgba(168, 168, 168, 0.6);
    outline: none;
}
#wrapper input:not([type="checkbox"]):active,
#wrapper input:not([type="checkbox"]):focus {
    border: 1px solid rgba(91, 90, 90, 0.7);
    background: rgba(238, 236, 240, 0.2);
    -webkit-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.9) inset;
    -moz-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.9) inset;
    box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.9) inset;
}
[data-icon]:after {
    content: attr(data-icon);
    font-family: "FontomasCustomRegular";
    color: rgb(106, 159, 171);
    position: absolute;
    left: 10px;
    top: 35px;
    width: 30px;
}
#wrapper p.button input {
    width: 40%;
    cursor: pointer;
    background: linear-gradient(145deg, #74d3e9, #2e7f92);
    padding: 10px 5px;
    font-family: "Segoe UI", sans-serif;
    color: #fff;
    font-size: 22px;
    border: none;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 -1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

#wrapper p.button input:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.15),
        inset 0 -1px 2px rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, #74d3e9, #2e7f92);
}

#wrapper p.button input:active,
#wrapper p.button input:focus {
    background: rgb(40, 137, 154);
    position: relative;
    top: 1px;
    border: 1px solid rgb(12, 76, 87);
    -webkit-box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset;
    -moz-box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset;
}
p.login.button,
p.signin.button {
    text-align: center;
}
.keeplogin {
    margin-top: -5px;
}
.keeplogin input,
.keeplogin label {
    display: inline-block;
    font-size: 12px;
    font-style: italic;
}
.keeplogin input#loginkeeping {
    margin-right: 5px;
}
.keeplogin label {
    width: 80%;
}
p.change_link {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 17px 15px 20px 15px;
    text-align: center;
    border-radius: 0 0 5px 5px;
    background: repeating-linear-gradient(
        -45deg,
        rgb(247, 247, 247),
        rgb(247, 247, 247) 15px,
        rgb(225, 234, 235) 15px,
        rgb(225, 234, 235) 30px
    );
    box-sizing: border-box;
}
#wrapper p.change_link a {
    display: inline-block;
    font-weight: bold;
    background: rgb(247, 248, 241);
    padding: 3px 8px;
    color: rgb(95, 155, 198);
    margin-left: 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s ease;
}
#wrapper p.change_link a:hover {
    color: rgb(135, 196, 241);
    background: rgb(247, 247, 247);
}
#wrapper p.change_link a:active {
    position: relative;
    top: 1px;
}
#register,
#login,
#forgot {
    position: absolute;
    top: 0px;
    width: 88%;
    padding: 10px 6% 10px 6%;
    margin: 0 0 35px 0;
    background: rgb(247, 247, 247);
    -webkit-box-shadow: 0pt 2px 5px rgba(105, 108, 109, 0.7),
        0px 0px 8px 5px rgba(208, 223, 226, 0.4) inset;
    -moz-box-shadow: 0pt 2px 5px rgba(105, 108, 109, 0.7),
        0px 0px 8px 5px rgba(208, 223, 226, 0.4) inset;
    box-shadow: 0pt 2px 5px rgb(0 0 0 / 70%),
        0px 0px 8px 5px rgb(0 0 0 / 40%) inset;
    -webkit-box-shadow: 5px;
    -moz-border-radius: 5px;
    border-radius: 30px;
}
@media (max-width: 600px) {
    #register,
    #login,
    #forgot {
        width: 95% !important;
        padding: 10px 4% 10px 4% !important;
        top: 10px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4),
            0 0 6px 3px rgba(0, 0, 0, 0.2) inset !important;
        border-radius: 20px !important;
    }
}

#register {
    z-index: 21;
    opacity: 0;
}
#forgot {
    z-index: 21;
    opacity: 0;
}
#login {
    z-index: 22;
}
#toregister:target ~ #wrapper #register,
#tologin:target ~ #wrapper #login,
#toforgot:target ~ #wrapper #forgot {
    z-index: 22;
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -ms-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -o-animation-delay: 0.1s;
    -ms-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
#toregister:target ~ #wrapper #login,
#tologin:target ~ #wrapper #register,
#tologin:target ~ #wrapper #forgot,
#toforgot:target ~ #wrapper #login {
    -webkit-animation-name: fadeOutLeftBig;
    -moz-animation-name: fadeOutLeftBig;
    -ms-animation-name: fadeOutLeftBig;
    -o-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}
.animate {
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: both;

    -moz-animation-duration: 1s;
    -moz-animation-timing-function: ease;
    -moz-animation-fill-mode: both;

    -o-animation-duration: 1s;
    -o-animation-timing-function: ease;
    -o-animation-fill-mode: both;

    -ms-animation-duration: 1s;
    -ms-animation-timing-function: ease;
    -ms-animation-fill-mode: both;

    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: both;
}
.lt8 #wrapper input {
    padding: 10px 5px 10px 32px;
    width: 92%;
}
.lt8 #wrapper input[type="checkbox"] {
    width: 10px;
    padding: 0;
}
.lt8 #wrapper h1 {
    color: #066a75;
}
.lt8 #register {
    display: none;
}
.lt8 p.change_link,
.ie9 p.change_link {
    position: absolute;
    height: 90px;
    background: transparent;
}
