html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f7fb;
}

.login-page {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    max-width: 350px;
    background: linear-gradient(
        0deg,
        rgb(255, 255, 255) 0%,
        rgb(244, 247, 251) 100%
    );
    border-radius: 40px;
    padding: 25px 35px;
    border: 5px solid rgb(255, 255, 255);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 30px 30px -20px;
    margin: auto;
    text-align: center;
}
.login-box {
    max-width: 350px;
    background: linear-gradient(
        0deg,
        rgb(255, 255, 255) 0%,
        rgb(244, 247, 251) 100%
    );
    border-radius: 40px;
    padding: 25px 35px;
    border: 5px solid rgb(255, 255, 255);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 30px 30px -20px;
    margin: 20px auto;
    text-align: center;
}

.login-logo {
    font-weight: 900;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}

.form-control {
    background: white;
    border: none;
    padding: 15px 20px;
    border-radius: 20px;
    margin-top: 15px;
    box-shadow: #cff0ff 0px 10px 10px -5px;
    border-inline: 2px solid transparent;
}

.form-control::placeholder {
    color: rgb(170, 170, 170);
}

.form-control:focus {
    outline: none;
    border-inline: 2px solid #12b1d1;
    box-shadow: none;
}

.btn-block {
    display: block;
    width: 100%;
    font-weight: bold;
    background: linear-gradient(
        45deg,
        rgb(6 6 6) 0%,
        rgb(150 163 165) 100%
    );
    color: white;
    padding: 15px;
    margin: 20px auto;
    border-radius: 20px;
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 20px 10px -15px;
    border: none;
    transition: all 0.2s ease-in-out;
}

.btn-block:hover {
    transform: scale(1.03);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 23px 10px -20px;
}

.btn-block:active {
    transform: scale(0.95);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 15px 10px -10px;
}
.hold-transition.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f7fb;
}

.login-box {
    margin: auto; 
}   

.input-group {
    position: relative;
}

.input-group-append {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.input-group .form-control {
    padding-right: 40px; /* Espacio para el ícono */
}

.input-group-text {
    background: none;
    border: none;
    color: rgb(170, 170, 170);
}