* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    background: url(ingreso-fondo.jpg) center no-repeat fixed;
    background-size: cover;
    background-color: #008E40;
}

.title {
    display: none;
    text-align: center;
    padding: 50px 0 20px;
}

.tilte h1 {
    margin: 0;
    padding: 0;
    color: #1E5830;
    text-transform: uppercase;
    font-size: 36px;
}

.contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    background: rgba(255,255,255,.8);
    border-radius: 16px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .5);
    max-width: 440px;
    backdrop-filter: blur(3px);
}

.contenedor .left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contenedor .left>img{
    max-width: 100%;
    width: 220px;
}

.contenedor .right {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 16px 16px 0;
    box-sizing: border-box;
    padding: 20px 40px 30px;
}

.loginpanel{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.formBox {
    box-sizing: border-box;
}

.formBox p {
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: #1E5830;
    width: 100%;
}

.formBox input {
    margin-bottom: 20px;
    width: 100%;
}

.formBox input[type="text"],
.formBox input[type="password"],
.formBox input[type="search"]{
    border: none;
    outline: none;
    padding: 10px;
    background: rgba(255,255,255,0.6);
}

.formBox input[type="text"]:focus,
.formBox input[type="password"]:focus {
    border: 0;
}

.formBox input[type="submit"] {
    border: none;
    outline: none;
    color: #fff;
    background: hsl(107deg 28% 50% / 80%);
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    border-radius: 20px;
}

.input-formbox {
    display: flex;
    margin-bottom: 20px;
}

.input-formbox__icon {
    background-color: hsl(107deg 28% 50% / 80%);
    padding: 6px 10px 6px 12px;
    border-radius: 20px 0 0 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

img.input-formbox__img {
    width: 22px !important;
}

.input-formbox__input {
    margin-bottom: 0 !important;
    border-radius: 0 20px 20px 0;
    font-size: 16px;
}

@media (max-width:768px) {
    .contenedor {
        width: 90%;
    }
}

@media (max-width:480px) {
    .contenedor {
        display: block;
        width: 100%;
    }
    .contenedor .left {
        border: none;
        width: 100%;
    }
    .contenedor .left>img {
        width: 140px;
    }
    .contenedor .right {
        border-radius: 16px;
        width: 100%;
    }
}

.forgetpass {
    text-align: center;
}

.forgetpass a {
    color: #027151;
    text-align: center;
}
