/* 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: Get Started */
.login-section {
    padding: 64px 0;
    min-height: calc(100vh - 210px);
    overflow: hidden;
}

.login-section-success {
    background-image: linear-gradient(to right, var(--white) 50%, #f7f7f7 50%);
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.login-title {
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 48px;
    max-width: 426px;
}

.login-download-wrapper {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.login-download-wrapper::before {
    content: "";
    position: absolute;
    top: -12px;
    left: calc(100% + 8px);
    width: 110px;
    height: 96px;
    background-image: url(/img/arrow-to-button.png);
    background-size: contain;
    transform: rotateZ(10deg);
}

.login-download-item {
    margin-right: 16px;
}

.login-download-item:last-child {
    margin-right: 0;
}

.login-download-item-image {
    height: 40px;
    display: block;
}

.login-box {
    position: relative;
    border: 4px solid var(--logo);
    max-width: 540px;
    margin: 0 auto;
}

.login-decoration {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.login-decoration-top {
    top: -2px;
}

.login-decoration-bottom {
    bottom: -2px;
}

.login-decoration::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 4px solid var(--logo);
    background-color: var(--white);
    position: absolute;
    left: -12px;
}

.login-decoration::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 4px solid var(--logo);
    background-color: var(--white);
    position: absolute;
    right: -12px;
}

.login-header {
    padding: 32px;
    border-bottom: 4px solid var(--logo);
}

.login-body {
    padding: 32px;
}

.login-form-group {
    margin-bottom: 16px;
}

.login-more {
    margin-top: 24px;
    color: var(--text-color);
}

.login-link {
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
}

.login-link:hover {
    text-decoration: underline;
}

.login-form-box {
    position: relative;
}

.login-form-box>input {
    padding-right: 40px;
}

.login-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: Get Started */

/* start: Breakpoints */
@media screen and (max-width: 767px) {
    .login-wrapper {
        grid-template-columns: 1fr;
    }

    .login-title {
        font-size: var(--text-3xl);
    }
}

@media screen and (max-width: 575px) {
    .login-header {
        padding: 24px;
    }

    .login-body {
        padding: 24px;
    }
}

/* start: Breakpoints */