body {
    background-color: #343a40;
    background-image: url(../img/back-login.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    /*gap: 0.5rem;*/
    font-family: 'Poppins', sans-serif;
}
a{
    text-decoration: none;
}
h1, p, footer{
    color: white;
}
footer a{
    color: gray;
}
.contenedor-info {
    width: 450px;
    height: 200px;
    border-radius: 10px 10px 0px 0px;
    /*box-shadow: 0 0 15px rgba(51, 52, 58, 0.8);*/
    background-color: rgba(51, 52, 58, 0.4);
    border: rgba(255, 255, 255, 0.15);
    filter: blur(0.5px);
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 1rem;
}
.division{
    flex-shrink: 0;
    border-top: 0px solid rgba(0, 0, 0, 0.08);
    border-right: 0px solid rgba(0, 0, 0, 0.08);
    border-left: 0px solid rgba(0, 0, 0, 0.08);
    height: 0.0625rem;
    margin: 3rem 0px;
    border-bottom: none;
    opacity: 0.25;
    background-color: transparent;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0)) !important;
}
.contenedor-login {
    display: flex;
    flex-direction: column;
    width: 450px;
    height: 350px;
    border-radius: 0px 0px 10px 10px;
    background-color: rgba(51, 52, 58, 0.4);
    border: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    text-align: center;
    padding: 1rem;
    font-family: Roboto;
}
.contenedor-sesion h6{
    font-size: 15px;
    color: white;
    margin-top: 0;
}
.contenedor-sesion span{
    padding: 0 20px;
    text-transform: uppercase;
}
.card-3d-wrap {
    height: 250px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    perspective: 800px;
    margin-top: 2rem;
}
.card-3d-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: all 600ms ease-out;
}
.card-front,
.card-back {
    width: 100%;
    height: 100%;
    background-color: rgba(51, 52, 58);
    position: absolute;
    border-radius: 10px;
    left: 0;
    top: 0;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 15px;
    /*box-shadow: 0 1px 3px rgb(250 250 250 / 50%), 0 1px 2px rgb(250 250 250 / 90%);*/
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}
.card-back {
    transform: rotateY(180deg);
}

@property --angle{
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

.card-3d-wrapper::after, .card-3d-wrapper::before {
    content: '';
    background-image: conic-gradient(from var(--angle), transparent 70%, rgb(8, 10, 19));
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding: 3px;
    border-radius: 10px;
    animation: 4s animate linear infinite;

}

.card-3d-wrapper::before {
    filter: blur(1.5rem);
    opacity: 0.5;
}

@keyframes animate {
    from {
        --angle: 0deg;
    }
    to {
        --angle: 360deg;
    }
}



[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.checkbox:checked+label,
.checkbox:not(:checked)+label {
    position: relative;
    display: block;
    text-align: center;
    width: 60px;
    height: 16px;
    border-radius: 10px;
    padding: 0;
    margin: 10px auto;
    cursor: pointer;
    background-color: #f4f6f9;
}

.checkbox:checked+label:before,
.checkbox:not(:checked)+label:before {
    position: absolute;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #f4f6f9;
    background-color: #565964;
    font-family: 'unicons';
    content: '\f062';
    font: var(--fa-font-solid);
    z-index: 20;
    top: -10px;
    left: -10px;
    line-height: 36px;
    text-align: center;
    font-size: 24px;
    transition: all 0.5s ease;
}

.checkbox:checked+label:before {
    transform: translateX(44px) rotate(-270deg);
}

.checkbox:checked~.card-3d-wrap .card-3d-wrapper {
    transform: rotateY(180deg);
}
.center-wrap {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate3d(0, -50%, 35px) perspective(100px);
    z-index: 20;
    display: block;
}

.form-group {
    position: relative;
    display: block;
    margin: 0.5rem 0;
    padding: 0;
}

.form-style {
    padding: 13px 20px;
    padding-left: 55px;
    width: 70%;
    border-radius: 4px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.5px;
    outline: none;
    color: #c4c3ca;
    background-color: #1f2029;
    border: none;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    box-shadow: 0 4px 8px 0 rgba(21, 21, 21, .2);
}
.input-icon {
    position: absolute;
    top: 0;
    left: 50px;
    height: 48px;
    font-size: 24px;
    line-height: 48px;
    text-align: left;
    color: #f4f6f9;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.btn {
    border-radius: 4px;
    height: 44px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    padding: 0 30px;
    letter-spacing: 1px;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    text-align: center;
    border: none;
    background-color: #1f2029;
    color: #f4f6f9;
}


.form-style:focus,
.form-style:active {
    border: none;
    outline: none;
    box-shadow: 0 4px 8px 0 rgba(21, 21, 21, .2);
}

.form-group input:-ms-input-placeholder {
    color: #c4c3ca;
    opacity: 0.7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input::-moz-placeholder {
    color: #c4c3ca;
    opacity: 0.7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:-moz-placeholder {
    color: #c4c3ca;
    opacity: 0.7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input::-webkit-input-placeholder {
    color: #c4c3ca;
    opacity: 0.7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:focus:-ms-input-placeholder {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:focus:-moz-placeholder {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:focus::-webkit-input-placeholder {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.btn:active,
.btn:focus {
    background-color: #1f2029;
    color: #fcfcfc;
    box-shadow: 0 8px 24px 0 rgba(16, 39, 112, .2);
}

.btn:hover {
    background-color: #fcfcfc;
    color: #1f2029;
    box-shadow: 0 8px 24px 0 rgba(16, 39, 112, .2);
}