
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');


* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend', sans-serif!important;
    font-size: 14px;
    margin: 0;
    color: #999;
}

input,
textarea,
select,
button {
 
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
}

img {
    max-width: 100%;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

:focus {
    outline: none;
}

.input-password{
    position: relative;
    cursor: pointer;
    z-index: 999;
}

.wrapper {
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1C3549;
    background: linear-gradient(167deg, rgba(28, 53, 73, 1) 50%, rgba(38, 88, 97, 1) 100%);
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 20px;
}

.inner {
    position: relative;
    width: 435px;
}

.image-1 {
    position: absolute;
    bottom: -30px;
    left: -330px;
    z-index: 99;
    width: auto;
    height: auto;
}

.image-2 {
    position: absolute;
    bottom: -50px;
    right: -150px;
    width: 200px;
    z-index: 0;
}


.image-2 {
    /* efecto elevación sutil */
    transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s cubic-bezier(.2, .8, .2, 1);
    will-change: transform, box-shadow;

    border-radius: 6px;
    transform-origin: center;
    transform: translateY(0) translateZ(0) scale(1);
    -webkit-transform: translateY(0) translateZ(0) scale(1);
    display: block;
    cursor: pointer;
    z-index: 5;
    /* bring above background elements so hover is visible */
}

/* more pronounced floating animation to make the image move visibly */
@keyframes float {
    0% {
        transform: translateY(0) translateZ(0) scale(1);
    }

    50% {
        transform: translateY(-16px) translateZ(0) scale(1.01);
    }

    100% {
        transform: translateY(0) translateZ(0) scale(1);
    }
}

@media (prefers-reduced-motion: no-preference) {

    /* slightly faster and more noticeable */
    .image-2 {
        animation: float 4.5s ease-in-out infinite;
    }

    /* pause the animation when hovering so hover transform takes over */
    .image-2:hover,
    .image-2:focus {
        animation-play-state: paused;
    }
}

/* stronger elevation on hover / focus / active */
.image-2:hover,
.image-2:focus,
.image-2:active {
    transform: translateY(-26px) translateZ(0) scale(1.06);
    -webkit-transform: translateY(-26px) translateZ(0) scale(1.06);
}

/* On touch devices: stronger active feedback, avoid hover rules */
@media (hover: none) and (pointer: coarse) {
    .image-2:hover {
        transform: translateZ(0);
        box-shadow: none;
    }

    .image-2:active {
        transform: translateY(-18px) translateZ(0) scale(1.04);
        box-shadow: 0 32px 64px rgba(10, 20, 30, 0.3);
    }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {

    .image-2,
    .image-2:hover,
    .image-2:focus,
    .image-2:active {
        transition: none;
        animation: none;
        transform: none;
        box-shadow: none;
    }
}

form {
    width: 100%;
    position: relative;
    z-index: 9;
    padding: 77px 61px 66px;
    background: #fdf9ed;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

/* Flip card styles for contact info */
.card {
    perspective: 1200px;
}

.card-inner {
    width: 100%;
    position: relative;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* by default prevent pointer events on both; we'll enable for visible side */
    pointer-events: none;
    border-radius: 5px;
}

.card-back {
    transform: rotateY(180deg);
    background: #fff;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    pointer-events: auto;
    /* enable for back when visible */
}

/* Ensure correct stacking and pointer-events so visible face receives clicks */
.card .card-front {
    z-index: 2;
}

.card .card-back {
    z-index: 1;
    pointer-events: none;
}

.card .card-front {
    pointer-events: auto;
}

.card.flipped .card-front {
    z-index: 1;
    pointer-events: none;
}

.card.flipped .card-back {
    z-index: 2;
    pointer-events: auto;
}

/* If the form inside the front has a higher z-index (e.g. z-index:9), it can still
  block the back when flipped. Lower its stacking and disable its pointer-events
  while the card is flipped. */
.card .card-front form {
    z-index: 0;
}

.card.flipped .card-front form {
    z-index: 0;
    pointer-events: none;
}

.back-content {
    text-align: center;
    color: #444;
}

.back-content h3 {
    margin-bottom: 10px;
    color: #888;
   
}

.back-content ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
}

.back-content ul li {
    margin: 6px 0;
}

.back-content a {
    color: #033e76;
}

.card-front {
    position: relative;
    pointer-events: auto;
    /* allow interaction on front by default */
}

/* Ensure form padding stays inside card-front */
.card-front form {
    padding: 40px 40px 40px;
}


/* Responsive adjustments: on small screens avoid absolute stacking which can cause overflow */
@media (max-width: 767px) {
    .card {
        display: block;
        width: 100%;
    }

    .card-inner {
        position: relative;
        transform: none !important;
        transition: none;
    }

    .card-front,
    .card-back {
        position: relative;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
        transform: none;
    }

    .card-back {
        display: block;
        padding: 20px;
    }

    /* In stacked mode, only show the active side to avoid overlap and blocking */
    .card-front,
    .card-back {
        display: none;
    }

    .card .card-front {
        display: block;
    }

    .card.flipped .card-front {
        display: none;
    }

    .card.flipped .card-back {
        display: block;
    }
}


h3 {
    text-transform: uppercase;
    font-size: 25px;

    color: #888888;
    letter-spacing: 3px;
    text-align: center;

}

.form-holder {
    position: relative;
    margin-bottom: 21px;
}

.form-holder span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #333;
}

.form-holder span.lnr-lock {
    left: 2px;
}

.form-control {
    border: none;
    border-bottom: 1px solid #e6e6e6;
    display: block;
    width: 100%;
    height: 38px;
    background: none;
    padding: 3px 42px 0px;
    color: #666;

    font-size: 16px;
}

.form-control::-webkit-input-placeholder {
    font-size: 14px;

    color: #999;
    transform: translateY(1px);
}

.form-control::-moz-placeholder {
    font-size: 14px;

    color: #999;
    transform: translateY(1px);
}

.form-control:-ms-input-placeholder {
    font-size: 14px;
 
    color: #999;
    transform: translateY(1px);
}

.form-control:-moz-placeholder {
    font-size: 14px;
 
    color: #999;
    transform: translateY(1px);
}

.form-control:focus {
    border-bottom: 1px solid #accffe;
}

button {
    border: none;
    width: 100%;
    height: 49px;
    margin-top: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #033e76;
    color: #fff;
    text-transform: uppercase;

    font-size: 15px;
    letter-spacing: 2px;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

button span {
    position: relative;
    z-index: 2;
}

button:before,
button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(52, 152, 253, 0.25);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

button:after {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

button:hover:before,
button:hover:after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

@media screen and (min-width: 1000px) and (max-width: 1650px) {
    .inner{
        transform: scale(0.8);
    }
.image-1{
    width: 400px;
}
}

@media (max-width: 991px) {
    .inner {
        width: 400px;
        left: 4%;
    }
}

@media (max-width: 767px) {
    .inner {
        width: 100%;
        left: 0;
    }

    .image-1,
    .image-2 {
        display: none;
    }

    form {
        padding: 35px;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
    }

    .wrapper {
        background: none;
    }
}

/*# sourceMappingURL=style.css.map */

/* Password toggle styles placed at end for easy override */
.input-password { position: relative; }
.input-password .form-control { padding-right: 44px; }
.password-toggle {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 2;
    color: #333;
}
.password-toggle ion-icon { font-size: 18px; }
.password-toggle ion-icon:nth-child(1) { display: inline; } /* eye-off by default */
.password-toggle ion-icon:nth-child(2) { display: none; } /* eye hidden by default */
.password-toggle.show-eye-off ion-icon:nth-child(1) { display: inline; }
.password-toggle.show-eye-off ion-icon:nth-child(2) { display: none; }
.password-toggle.show-eye-on ion-icon:nth-child(1) { display: none; }
.password-toggle.show-eye-on ion-icon:nth-child(2) { display: inline; }