body{
    background:red !important;
}


/* ===============================
   La Panera Check-in
   =============================== */

:root{

    --lpc-primary:#355C4B;
    --lpc-primary-hover:#2B4C3D;

    --lpc-background:#F8F6F2;

    --lpc-card:#FFFFFF;

    --lpc-text:#222;

    --lpc-radius:18px;

}

.lpc-container{

    max-width:760px;

    margin:60px auto;

    background:var(--lpc-card);

    border-radius:var(--lpc-radius);

    padding:50px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    text-align:center;

}

.lpc-container h1{

    font-size:42px;

    margin-bottom:10px;

}

.lpc-container h2{

    font-size:28px;

    margin-bottom:25px;

}

.lpc-container p{

    font-size:18px;

    line-height:1.7;

    color:#555;

}

.lpc-button{

    display:inline-block;

    margin-top:35px;

    background:var(--lpc-primary);

    color:white;

    padding:16px 34px;

    border-radius:12px;

    text-decoration:none;

    transition:.25s;

}

.lpc-button:hover{

    background:var(--lpc-primary-hover);

}
.lpc-input{

    width:100%;

    padding:14px;

    font-size:16px;

    border:1px solid #ddd;

    border-radius:12px;

    box-sizing:border-box;

}