﻿@charset "utf-8";

:root {
    --text-color--text-primary\<deleted\|relume-variable-text-color-1\>: var(--base-color-neutral--black\<deleted\|relume-variable-color-neutral-1\>);
    --link-color--link-primary\<deleted\|relume-variable-link-color-1\>: var(--base-color-neutral--black\<deleted\|relume-variable-color-neutral-1\>);
    --space-lg: 24px;
    --space-xl: 48px;
    --dark-green: #0c3b1e;
    --base-color-brand--white: white;
    --green: #1a7e40;
    --border-color--border-primary\<deleted\|relume-variable-border-color-1\>: var(--base-color-neutral--black\<deleted\|relume-variable-color-neutral-1\>);
    --base-color-neutral--black\<deleted\|relume-variable-color-neutral-1\>: black;
    --base-color-neutral--white\<deleted\|relume-variable-color-neutral-2\>: white;
    --transparent: transparent;
    --_trigger---on: 1;
    --_trigger---off: 0;
    --space-sm: 6px;
    --black-archive\<deleted\|variable-dccb7db6\>: black;
    --background-color--background-secondary\<deleted\|relume-variable-background-color-2\>: var(--base-color-neutral--neutral-lightest\<deleted\|relume-variable-color-neutral-3\>);
    --link-color--link-alternate\<deleted\|relume-variable-link-color-3\>: var(--base-color-neutral--white\<deleted\|relume-variable-color-neutral-2\>);
    --background-color--background-primary: var(--base-color-brand--white);
    --background-color--background-tertiary\<deleted\|relume-variable-background-color-3\>: var(--base-color-neutral--neutral-light\<deleted\|relume-variable-color-neutral-5\>);
    --background-color--background-alternate\<deleted\|relume-variable-background-color-4\>: var(--base-color-neutral--black\<deleted\|relume-variable-color-neutral-1\>);
    --text-color--text-alternate\<deleted\|relume-variable-text-color-3\>: var(--base-color-neutral--white\<deleted\|relume-variable-color-neutral-2\>);
    --text-color--text-secondary\<deleted\|relume-variable-text-color-2\>: var(--base-color-neutral--black\<deleted\|relume-variable-color-neutral-1\>);
    --background-color--background-success\<deleted\|relume-variable-background-color-6\>: var(--base-color-system--success-green-light);
    --text-color--text-success: var(--base-color-system--success-green);
    --background-color--background-error\<deleted\|relume-variable-background-color-8\>: var(--base-color-system--error-red-light);
    --text-color--text-error: var(--base-color-system--error-red);
    --grey: #868686;
    --space-md: 12px;
    --round-corner: 20px;
    --space-xxl: 60px;
    --light-grey: #f7f7f7;
    --light-green: #72b746;
    --base-color-brand--black: black;
    --base-color-system--success-green: #027a48;
    --base-color-system--success-green-light: #ecfdf3;
    --base-color-system--error-red: #b42318;
    --base-color-system--error-red-light: #fef3f2;
    --base-color-neutral--neutral-lightest\<deleted\|relume-variable-color-neutral-3\>: #eee;
    --base-color-neutral--neutral-light\<deleted\|relume-variable-color-neutral-5\>: #aaa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Urbanist", sans-serif;
}

.page-container {
    height:100vh;
    padding: 70px 80px;
    display: flex;
    align-items:center;
    justify-content:center;
}

.login-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content:space-between;
    border-radius: var(--round-corner);
    box-shadow: #00000020 2px 4px 25px 0px;

    /*height: 692px;*/
    height:100%;
    /*max-width: 1200px;*/
}

.login-main {
    display: flex;
    position: relative;
    color: #ffffff;
    border-radius: 0 var(--round-corner) var(--round-corner) 0;
    gap: 4px;
    width: 60%;
}

.login-video {
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
    border-radius: 0 var(--round-corner) var(--round-corner) 0;
}

.login-video-still {
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
    border-radius: 0 var(--round-corner) var(--round-corner) 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
    border-radius: 0 var(--round-corner) var(--round-corner) 0;
}

.forest-zone {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
    padding: 5rem 5rem;
    /*padding: var(--space-xl);*/
    z-index: 1;
}

.forest-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.forest-header img {
    /*there has to be a better way?*/
    /*filter: brightness(0) invert(1);*/
    height:4rem;
}

.legal-notice {
    font-size:18px;
    position: relative;
    cursor: default;
}

.legal-notice-modal {
    opacity: 0;
    transition: opacity .3s;
    width: 358px;
    position: absolute;
    top: 38px;
    right: 0;
    background: var(--light-grey);
    padding: 16px 17px 16px 17px;
    border-radius: var(--round-corner);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    font-size: 15px;
    color: var(--dark-green);
}

.legal-notice:hover > .legal-notice-modal {
    opacity: 1;
}

.forest-footer {
    font-size:2.5rem;
}

.login-aside {
    display:flex;
    justify-content:center;
    align-items:center;
    width: 40%;
    padding: 120px 10rem;
}

.login-content {
    height:100%;
    /*padding: 90px;*/
    /*width: 428px;*/
    width:100%;
    min-width:240px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:var(--space-xxl);
}

.login-form {
    display: flex;
    flex-direction:column;
    justify-content:space-between;
    height:100%;
    gap: var(--space-xl);
    color:#1a7e40;
    font-size:18px;
    position:relative;
}

.login-form-header-text {
    font-size:26px;
}

.login-form-fields {
    display:flex;
    flex-direction:column;
    gap:12px;
}

.login-input-id {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.login-input-password {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.forgot-your-password:link, .forgot-your-password:visited {
    text-decoration: none;
    font-size: 16px;
    font-style: italic;
    color: var(--grey);
}

.forgot-your-password:hover, .forgot-your-password:active {
    font-style: normal;
    color:var(--dark-green);
}

.login-button-container {
    align-self: start;
    position: relative;
}

.bad-login {
    visibility: hidden;
    position:absolute;
    width:100%;
    bottom:0;
    left:0;
    transform:translateY(100%);
}

#error-msg {
    font-size:16px;
    color: var(--text-color--text-error);
}

.login-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: var(--grey);
}

/* From wf */
button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}
.submit-btn-wrapper {
    width: 148px;
    height: 42px;
    position: relative;
}
.button {
    border: 1px solid var(--green);
    background-color: var(--green);
    color: var(--base-color-brand--white);
    text-align: center;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    padding: 2px 18px;
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    text-decoration: none;
    transition: all .3s;
    display: flex;
}

.button.is-icon {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

.button.is-icon:hover {
    --_trigger---on: 0;
    --_trigger---off: 1;
}

.icon-embed {
    opacity: 1;
    color: color-mix(in hsl, var(--green) calc(100% * var(--_trigger---on)), var(--dark-green) calc(100% * var(--_trigger---off)));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition-property: all;
    transition-duration: .3s;
    transition-timing-function: ease;
    display: flex;
}

.icon-embed.hidden {
    opacity: var(--_trigger---off);
    transition: opacity .3s;
    position: absolute;
    inset: 0% 18px 0% auto;
}

.icon-embed.icon-leaf {
    opacity: var(--_trigger---on);
    transition: opacity .3s;
}

.w-embed:before, .w-embed:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-embed:after {
    clear: both;
}



.w-input, .w-select {
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    height: 38px;
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857;
    display: block;
}

.w-input::placeholder, .w-select::placeholder {
    color: #999;
}

.w-input:focus, .w-select:focus {
    border-color: #3898ec;
    outline: 0;
}

textarea.w-input, textarea.w-select {
    height: auto;
}

.text-field {
    /*margin-bottom: var(--space-lg);*/
    border-radius: var(--space-md);
    border: 1px solid #d9d9d9;
    min-height: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
    line-height: 130%;
    color: #868686;
}

.password-text-field {
    font-size:48px;
}

/*responsive layout*/
@media  (max-width: 991px) {
    .page-container {
        /*height: 100%;*/
    }
    .login-container {
        flex-direction:column;
        /*height: 100%;*/
    }
    .login-main {
        height: 40%;
    }
    .login-main, .login-aside {
        width:100%;
    }
    .login-aside {
        padding: 30px var(--space-lg) 30px var(--space-lg);
    }
    .login-video, .video-overlay, .login-video-still {
        border-radius: var(--round-corner) var(--round-corner) 0 0;
    }
    .login-content {
        /*padding: 30px var(--space-lg) 30px var(--space-lg);*/
        /*width: auto;*/
        /*max-width: 428px;*/
    }
    .forest-zone {
        padding: var(--space-lg);
        gap: var(--space-lg);
    }
    .forest-footer {
        font-size: 32px;
    }
    .login-video {
        display: none;
    }
    .login-video-still {
        display: block;
    }
}