body {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    background-color: #006044;
    display: flex;
    justify-content: center;
    /* horizontal centering */
    align-items: center;
    /* vertical centering */
    height: 100vh;
}

.auth-logo {
    margin: auto;
    align-items: center;
    justify-content: center;
}

.auth-title {
    margin-top: 5vh;
    margin-bottom: 4vh;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
}

.auth-title h3 {
    font-weight: 500;
}

.auth-title p {
    opacity: 0.8;
    font-weight: 400;
}

.reset-page {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-with-icon input {
    background-color: rgba(57, 136, 113, 1);
    color: #ffffff;
}

.form-control:focus {
    background-color: rgba(57, 136, 113, 1);
    color: #ffffff;
}

.to-login-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2vh;
    font-size: 14px;
}

.to-login-wrapper a {
    color: #ffffff;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .auth-input {
        width: 30vh !important;
        flex-grow: 1 !important;
    }

    .reset-page {
        width: auto;
        margin: auto;
    }

    .btn-primary {
        margin-top: 3vh;
    }

}