/* start: Globals */
:root {
    --primary: #04b872;
}
/* end: Globals */

/* start: Button */
.btn-primary {
    color: var(--white);
}
/* end: Button */

/* start: Navbar */
.navbar {
    background-color: #e1fff3;
}
/* end: Navbar */

/* start: Forgot password */
.forgot-section {
    padding: 64px 0;
    min-height: calc(100vh - 210px);
}
.forgot-section-success {
    background-image: linear-gradient(to right, var(--white) 50%, #f7f7f7 50%);
}
.forgot-box {
    position: relative;
    border: 4px solid var(--logo);
    max-width: 540px;
    margin: 0 auto;
}
.forgot-decoration {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.forgot-decoration-top {
    top: -2px;
}
.forgot-decoration-bottom {
    bottom: -2px;
}
.forgot-decoration::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 4px solid var(--logo);
    background-color: var(--white);
    position: absolute;
    left: -12px;
}
.forgot-decoration::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 4px solid var(--logo);
    background-color: var(--white);
    position: absolute;
    right: -12px;
}
.forgot-header {
    padding: 32px;
    border-bottom: 4px solid var(--logo);
}
.forgot-body {
    padding: 32px;
}
.forgot-form-group {
    margin-bottom: 16px;
}
.forgot-more {
    margin-top: 24px;
    color: var(--text-color);
}
.forgot-link {
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
}
.forgot-link:hover {
    text-decoration: underline;
}
.forgot-form-box {
    position: relative;
}
.forgot-form-box > input {
    padding-right: 40px;
}
.forgot-form-password-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    color: var(--text-color);
    cursor: pointer;
    background-color: transparent;
    border: none;
    font-size: var(--text-lg);
}
/* end: Forgot password */

/* start: Breakpoints */
@media screen and (max-width: 575px) {
    .forgot-header {
        padding: 24px;
    }
    .forgot-body {
        padding: 24px;
    }
}
/* start: Breakpoints */
