
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
}

.login-container h1 {
    margin-bottom: 20px;
    text-align: center;
}
.login-container {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    position: absolute;
    left:20px;
    top:20px;
    background: #fff;
    border-radius: 20px;
}
.login-container button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #007BFF;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}
.login-container button:hover {
    background-color: #0056b3;
}
.input-group {
    position: relative;
    margin-bottom: 20px;
    font-size: 1rem;
}
.input-group input {
    letter-spacing: 0.1rem;
    width: 100%;
    padding: 10px 10px 10px 50px;
    border: none;
    border-bottom: 2px solid #ccc;
    background: none;
    outline: none;
}
.input-group input:focus {
    border-bottom: 2px solid #007BFF;
}
.input-group svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}
.is-focused svg {
    color: #007BFF;
}

.cover {
    position:relative;
    font-family: Montserrat;
    font-size:0.9em;
    background-color:#de2324;
    opacity:0.8;
    background-image: url(../img/loginOxxoBG.jpg);
    height: 100vh;
}
.left-panel {
    display: block;
    background-color:#fdf2e9;
    opacity:1;
    text-align: center;
    border-radius: 20px 20px 0 0;
}
.right-panel {
    display: block;
    margin: 0 auto;
    padding: 30px 30px;
}
.content-form{
    width: 100%;
}
#frmLogin{width:100%;}
    
@media (min-width:900px)  {
    .login-container {
        display: flex;
        width: calc(100% - 160px);
        height: calc(100% - 160px);
        left:80px;
        top: 80px;
    }
    .left-panel {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        padding:0;
        height: 100%;
        border-radius: 20px 0 0 20px;
    }
    .content-form{
        width: 50%;
    }
    .right-panel {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        padding:0;
    }
    .input-group {
        font-size: 1.3rem;
    }
}