*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    border-width: 0;
    border-style: solid;
}

body {
    background-color: #EEEEEE;
    color: #1a202c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    font-family: sans-serif !important;
    margin: 0;
}

.page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #ffffff;

}

h2 {
    color: #ffffff;
    display: block;
    font-size: 1.0rem;
    margin-top: .5rem;
}

h3 {
    color: #ffffff;
    display: block;
    font-size: 1.75rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    text-shadow: #47295c 1px 0 1px;
    transition: color .5s ease, border-color .5s ease, background-color .5s ease;
    /* border-bottom: 1px solid #7acc00; */
}

a:focus,
a:active {
    outline: none;
}

img {
    border-style: none;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

img,
svg {
    vertical-align: middle;
}

svg {
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
}

.container {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 32rem;
}

.inner {
    border-radius: 0.5rem;
    /* -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); */
    background: #EEEEEE;
    color:#ffffff
  }

.header {
    background-color: #47295c;
    color: white;
    border-radius: .5rem .5rem 0 0;
    margin-bottom: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border: 3px double #47295c;
    border-radius: .5rem;
}

form {
    padding: 2rem 2rem 2rem;
    background: #47295c;
    border-radius: .5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%);
}

.row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin: 0 -.5rem;
}

.w-1-2 {
    width: 50%;
    padding-left: .5rem;
    padding-right: .5rem;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: .5rem;
    text-align: left;
}

[for=remember] {
    font-weight: normal;
}

[type=text],
[type=password] {
    border: 1px solid #cbd5e0;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    font-size: 1rem;
    padding: .75rem .5rem;
    margin-bottom: .5rem;
    width: 100%;
    border-radius: 0.5rem;
}

[for=remember] {
    margin-bottom: 1rem;
}

.button {
    background-color: #7acc00;
    border-radius: 0.25rem;
    color: #fff;
    display: inline-block;
    font-size: 1.125rem;
    text-transform: uppercase;
    text-align: center;
    padding: .5rem 1rem;
    min-width: 9.375rem;
    margin-top: 4px;
}

.button:hover,
.button:focus {
    background-color: lightgreen;
    cursor: pointer;
    transition: 300ms;
    color: #47295c;
}

.button.secondary {
    font-size: 1rem;
}

.alt-login {
    margin-top: 1rem;
}

.alt-login>div {
    margin-bottom: .5rem;
}

.edtErrorMessage {
    color: red;
    font-weight: bold;
    margin-top: 1rem;
}

.instructions {
    text-align: left;
    padding-left: 20px;
}