/*
 *   ohlpcustomlayout.css
 *   This file includes styles related to layouts
 *  
 *   Contents of this file:
 *   |fixed-footer|
 *   |no-underline-email-input|
*/

/* *fixed-footer* */
body {
    display: flex;
    flex-direction: column;
}

form {
    flex: 1 0 auto;
}

.container {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

/* *no-underline-email-input* */
/* put important since underline styling is added at in-line level by default */
input[type="email"] {
    text-decoration: none !important;
}

.expand-grid-height{
    height: 148px;
}