:root {
    --color-green-light: #A8BEB9;
    --color-green-medium: #769A92;
    --color-green-dark: #044638;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #FFFFFF inset;
    -webkit-text-fill-color: #303030;
    caret-color: #303030;
}

body {
    color: #303030;
    background-color: #f1f1f1;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

a {
    color: #303030;
    text-decoration: none;
}

.color-green-medium {
    color: #769A92;
}

.title {
    height: 40px;
    margin: 100px 0 50px;
}

.login-box {
    background-color: #ffffff;
    border: 1px solid rgba(118, 154, 146, .2);
    padding: 40px;
    width: 400px;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 50px;
}

.login-title {
    font-size: 20px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 40px;
}

.alert__overlay {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99998;
    width: 100vw;
    color: white;
}

.alert__container {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    width: 100%;
    height: 90px;
    position: absolute;
    background-color: white;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
}

.alert__message-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.alert__title {
    color: #990000;
    font-size: 20px;
}

.alert__body {
    color: #B7B7B7;
    font-size: 14px;
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
    margin-block-end: 0;
    position: relative;
}

input[type=submit] {
    display: flex;
    font-family: inherit;
    justify-content: center;
    width: 100%;
    padding: 7px 0 8px;
    margin-top: 20px;
    background-color: var(--color-green-dark);
    font-size: 14px;
    letter-spacing: .25;
    font-weight: 600;
    color: #FFFFFF;
    border-radius: 17px;
    outline: none;
    border: none;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: rgba(4, 70, 56, .75);
}

input:not([type=submit]) {
    outline: none;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    height: 33px;
    padding-bottom: 15px;
    color: #303030;
    font-size: 18px;
    font-family: inherit;
}

input:not([type=submit]):focus,
input:not([type=submit]):hover {
    border-color: var(--color-green-dark);
}

input::-webkit-input-placeholder {
    color: #919191;
}

input::-moz-placeholder {
    color: #919191;
}

.margin-25 {
    margin-bottom: 25px;
}

.or-line {
    font-size: 12px;
    color: #919191;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2px;
}

.or-line::before {
    content: '';
    position: absolute;
    width: 142px;
    height: 1px;
    background-color: #d3d3d3;
    margin-top: 2px;
    left: 40px;
}

.or-line::after {
    content: '';
    position: absolute;
    width: 142px;
    height: 1px;
    background-color: #d3d3d3;
    margin-top: 2px;
    right: 40px;
}

/*FIX FOR iOS*/
input[type="text"],
input[type="email"],
input[type="submit"] {
    -webkit-appearance: none;
}

input[type="text"],
input[type="email"] {
    border-radius: 0;
}

.forgot {
    font-size: 12px;
    display: flex;
    align-self: flex-end;
    margin-top: 8px;
    cursor: pointer;
}

.forgot:hover {
    text-decoration: underline;
}

.message-banner,
.error,
.success,
.requirements {
    border-radius: 3px;
    background: #CDDAD7;
    border: 1px solid rgba(4, 70, 56, .2);
    color: var(--color-green-dark);
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: absolute;
    width: 100%;
    top: -35px;
    left: 0;
    box-sizing: border-box;
}

.error {
    background-color: #EBCCCC;
    color: #990000;
    border: 1px solid rgba(153, 0, 0, 0.2);
}

.requirements {
    height: auto;
    display: initial;
    padding: 15px;
}

.requirements-title {
    font-weight: 700;
    margin-bottom: 2px;
}

.url {
    text-decoration: underline;
}

.google-btn {
    margin: auto;
    content: '';
    height: 40px;
    width: 185px;
    border-radius: 2px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .4);
    display: block;
    background-color: #ffffff;
}

.google-btn:hover {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .4);
}

.google-btn:active {
    background-color: #eeeeee;
}
