.login-goodwater-logo {
    display: flex;
    margin: 0 auto;
    margin-bottom: 3.5em;
    height: 70px;
    animation: fadeInAnimation ease-in 1.2s
}

.login-section {
    margin-top: 8vh;
    animation: fadeInAnimation ease-in 1.2s
}

.login-sleek-input {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #4A5C76;
    height: calc(4.5rem + 3px);
    background-color: transparent !important;
}

.login-sleek-input-label {
    color: #4A5C76;
    font-weight: 500;
}

.login-sleek-input:-internal-autofill-selected {
    background-color: white !important;
}

.login-continue-button {
    display: flex;
    margin: auto;
    padding: 10px 22px;
    background-color: #4A5C76;
    color: white;
    border-radius: 30px;
    font-family: 'Untitled Sans';
    font-style: 300;
    font-weight: 500;
    font-size: 1.25em;
    line-height: 127%;
    letter-spacing: -0.005em;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.login-continue-button:hover, .login-continue-button:focus  {
    transform: translateY(-8px);
    transition: .3s ease-out;
}

.button-icon {
    align-self: center;
    margin-left: 0.3em;
}

.goodwater-7line-artwork-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: -1em;
    height: 260px;
    position: relative;
    overflow: hidden;
    z-index: -1;
}

.goodwater-7line-artwork-container img {
    position: absolute;
    width: 100%;
    height: 260px;
    min-width: 1418px;
    overflow: hidden;
 
} 

.login-forgot-password-link {
    float: right;
    font-size: 12px;
    color: #4A5C76;
    margin-top: 0.7em;
}

@media only screen and (max-device-width: 480px) {
    /* styles for mobile browsers smaller than 480px; (iPhone) */
    .login-section {
       min-height: 60vh;
    }
 }
 @media only screen and (device-width: 820px) {
    /* default iPad screens */
    .login-section {
        min-height: 60vh;
    }
 }


