
html, body { 
    height: 100vh; 
}

.login-page{
    height: 100vh;
}

.container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body{
    background: radial-gradient(ellipse at center, rgba(255,254,234,1) 0%, rgba(255,254,234,1) 35%, #B7E8EB 100%);
    overflow: hidden;
    color:black;
}


body h2{
    color: black;
}

img{
    width: 60%;
    margin: 2rem;
    text-align: center;
}

.login-button {
    position: relative;
    overflow: hidden;
    width: 80%;
    height: 3rem;
    padding: 0 2rem;
    border-radius: 1.5rem;
    background: #3d3a4e;
    background-size: 400%;
    color: #fff;
    border: none;
}

.login-button:hover::before {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
}

.login-button-content {
    position: relative;
    z-index: 1;
}

.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
        -ms-transform-origin: 0 50%;
            transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: linear-gradient(
    82.3deg,
    #9f78ff 10.8%,
    #32cafe 94.3%
    );
    -webkit-transition: all 0.475s;
    transition: all 0.475s;
}

.container .card{
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.07);
}

.card .card-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
}

.card .card-body form.theme-form{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-bottom: 0px;
}

.password-toggle {
    right: 3%;
    top: 65%;
    cursor: pointer;
    color: black;
    z-index: 2;
}

.password-input {
    padding-right: 2em;  /* Ajusta según sea necesario */
}

/* OCEAN STYLE */

.ocean { 
    height: 5%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #015871;
    z-index: -1;
}

.wave {
    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/wave.svg) repeat-x; 
    position: absolute;
    top: -198px;
    width: 500%;
    height: 198px;
    animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
    top: -175px;
    animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}

@keyframes wave {
    0% {
        margin-left: 0;
    }
    100% {
        margin-left: -1600px;
    }
}

@keyframes swell {
    0%, 100% {
        transform: translate3d(0,-25px,0);
    }
    50% {
        transform: translate3d(0,5px,0);
    }
}