body {
    font-family: 'Dosis', sans-serif;
}
.copyright {
    position: fixed;
    bottom: 10px; /* Distancia desde la parte inferior */
    left: 10px; /* Distancia desde la izquierda */
    color: #000000; /* Color del texto (ajusta según tu diseño) */
    font-size: 12px; /* Tamaño de fuente */
}

.login-design {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    height: 100vh;
}

.waves {
    background-image: url('../img/wave.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login {
    display: flex;
    /*justify-content: center;*/
    align-items: flex-start;
}

.login-data {
    text-align: center;
    width: 60%;
    margin-top: 200px;
}


.letrasRRHH {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 150px; /* Ajusta el tamaño según necesites */
    height: auto;
    opacity: 0.8; /* Si deseas un efecto de transparencia */
    z-index: -1;
}


.login-data h1 {
    font-weight: 200;
}

.input-group {
    position: relative;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.input-fill input {
    border: none;
    border-bottom: 3px solid #848f9a;
    width: 100%;
    height: 2rem;
    font-size: 1.0625rem;
    padding-left: 2rem;
    line-height: 147.6%;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

    .input-fill input:focus {
        outline: none;
        border-color: #6c1aef;
    }

    .input-fill input:hover {
        background-color: #e9ecef;
    }

    .input-fill input:focus + .input-label {
        top: 0;
        margin-bottom: 2rem;
        color: #6c1aef;
    }

    .input-fill input:focus ~ i {
        color: #6c1aef;
    }

.input-fill .input-label {
    position: absolute;
    top: 15px;
    left: 28px;
    line-height: 147.6%;
    color: #848f9a;
    transition: top 0.2s;
    font-weight: 700;
}

.input-fill i {
    position: absolute;
    top: 19px;
    left: 0;
    color: #848f9a;
    font-size: 1.5rem;
}

.login-form a {
    display: block;
    width: 85%;
    text-align: right;
    text-decoration: none;
    color: #848f9a;
    margin-bottom: 1.3rem;
    font-weight: 800;
    transition: 0.3s ease-in-out all;
    font-size: 18px;
}

    .login-form a:hover {
        color: #6c1aef;
    }

.btn-login {
    border-radius: 3rem;
    width: 45%;
    border: 1px solid #6c1aef;
    line-height: 1.6rem;
    font-size: 1.3rem;
    background-color: #6c1aef;
    color: #ffffff;
    padding: 0.5rem 0;
    transition: 0.3s ease-in-out all;
    font-weight: 500;
}

    .btn-login:hover {
        cursor: pointer;
        background-color: #ffffff;
        color: #6c1aef;
    }
