@import url('https://fonts.googleapis.com/css?family=Numans');
:root {
    /* Colores FE */
    --FondoEsperanza1: #00a297;
    --FondoEsperanza1-rgb: rgba(0,162,151,255);
    --FondoEsperanza2: #ec7404;
    --FondoEsperanza2-rgb: rgb(236,116,4);
    --white: #FCFCFC;
    --white-rgb: rgb(255, 255, 255);
    --white2: #B4B4B4;
    --white2-rgb: rgb(180, 180, 180);
    --black: #000000;
    --black-rgb: rgb(0, 0, 0);
}

html, * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Product-Sans', sans-serif;
}

.body-login {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('img/Login_fondo.png');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.login-container {
    width: 420px;
    height: auto;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    color: black;
    border-radius: 15px;
    padding: 40px 45px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.login-container h1 {
    font-size: 2.5rem;
    text-align: center;
}

.login-container .input-box-login {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box-login input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(0,0,0,0.5);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    font-size: 20px;
    color: black;
    padding: 20px 45px 20px 20px;
}

    .input-box-login input::placeholder {
        color: black;
    }

.input-box-login i {
    color: black;
    position: absolute;
    right: 20px;
    top: 45%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    font-size: 20px;
}

.login-container .btn-login {
    width: 100%;
    height: 50px;
    background: var(--FondoEsperanza1);
    color: #FCFCFC;
    border: none;
    outline: none;
    text-align: center;
    text-align: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.btn-login:hover {
    background: var(--FondoEsperanza2);
    color: #FCFCFC
}

.input-box-login input::placeholder {
    font-style: italic;
    color: #b0b0b0; /* Gris claro */
}

@media (max-width: 576px) {
    .login-container {
        width: 80%;
        padding: 30px;
    }
}