body {
    font-family: Arial, sans-serif;
    height: 100vh;
    margin: 0;
    background-image: url('../media/fondoof.png');
    background-size: cover;
    background-position: center;
}

.cajalogin {
    width: 290px;
    position: absolute;
    top: 225px;
    left: 115px;
}


.inputs {
    display: flex;
    align-items: center;
    border: 2px solid #1f5d4a;
    border-radius: 30px;
    padding: 10px 15px;
    margin-bottom: 25px;
}

.inputs .iconito {
    font-size: 18px;
    margin-right: 10px;
    color: #1f5d4a;
}

.inputs input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
}

.btningreso {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: none;
    background-color: #1f5d4a;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.btningreso:hover {
    background-color: #174a3a;
}




@media screen and (max-width: 500px) {
    
    html, body {
        background-image: none !important; 
        background-color: #f4f7f6 !important;
        height: 100% ;
        width: 100%;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0;
        padding: 0;
    }

    .cajalogin {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        
        width: 85% !important;
        max-width: 320px;
        background: white;
        padding: 30px 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin: 0 auto !important;
    }
}