:root {
    --mainColor: #00884E;
    --hoverColor: #005732;
}

.fp-button {
    border: none;
    margin-top: 1rem !important;
    background-color: var(--mainColor);
    border-color: var(--mainColor);
    color: white;
    border-radius: 2.4rem;
    font-family: Nunito, sans-serif;
}

.fp-button:hover {
    background-color: var(--hoverColor);
    cursor: pointer;
}

.loginLink {
    display: block;
    color: var(--mainColor);
    margin-top: 1rem !important;
    border-bottom: none;
    padding: 10px 30px;
}

.loginLink:hover {
    color:  var(--hoverColor);
}

.fp-exclamation-icon {
    font-size: 70px !important;
    color: var(--mainColor);
}

.info-icon {
    color: #1E73A0;
}

.info-card {
    border-radius: 4px;
    padding: 10px;
    background-color: #E9F2F6;
    height: fit-content;
}

.forgotPasswordPage {
    font-family: Montserrat,sans-serif;
}

.fp-card {
    border: none;
    border-radius: 4px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.fp-create-password-card {
    display: flex;
    flex-direction: row;
}

.button-row {
    display: flex;
    flex-direction: row;
    margin-top: 34px;
}

.fp-card-header{
    font-size: 16px;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    color: #38383B;
    text-transform: none;
}

.fp-input {
    width: 100%;
    margin-bottom: 20px;
}

.left-side {
    width:50%;
}

.fp-page{
    padding: 20px;
    max-width: 900px;
}

.fp-email{
    width: 100%;
}

.password-rules {
    margin-left: 20px;
}

@media only screen and (max-width: 1024px) {
    .fp-create-password-card {
        flex-direction: column;
    }
    .password-rules{
        margin-left: 0;
    }
    .left-side {
        width:100%;
    }
}


