.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #334c3c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}

.navbar ul a li {
    font-family: 'Work Sans', sans-serif !important;
}

.navbar.hide-nav {
    height: 0px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.nav-menu {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    color: #dedace;
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: -1px;
    padding: 0px 24px;
    text-decoration: none;
    font-size: 16px;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #dedace;
    transition: width .3s;
}

.nav-link.active::after {
    width: 100% !important;
}

.nav-link:hover::after {
    width: 100%;
    transition: width .3s;
}

.mini-logo {
    position: absolute;
    left: 28px;
}

.mini-logo>img {
    width: 100px;
}

.hamburger {
    position: absolute;
    right: 16px;
    padding-left: 20px;
    z-index: 7;
    transition: all 0.2s ease-in-out;
    display: none;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 50px !important;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #fff;
    stroke-width: 3.9;
    stroke-linecap: round;
}

.ham6 .top {
    stroke-dasharray: 40 172;
}

.ham6 .middle {
    stroke-dasharray: 40 111;
}

.ham6 .bottom {
    stroke-dasharray: 40 172;
}

.ham6.active .top {
    stroke-dashoffset: -132px;
}

.ham6.active .middle {
    stroke-dashoffset: -71px;
}

.ham6.active .bottom {
    stroke-dashoffset: -132px;
}

.nav.hide-nav .hamburger {
    opacity: 0;
}

.hamburger>svg {
    color: white;
    width: 40px;
    height: 40px;
    padding: 0px 5px;
    border-radius: 10px;
}

.login-container {
    position: absolute;
    right: 28px;
    top: 17px;
}

.register-button {
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    color: #141414;
    font-weight: 600;
    padding: 8px 10px;
    background-color: #dedace;
    border: 2px solid #dedace;
    border-radius: 5px;
}

.register-button:hover {
    color: #dedace;
    background-color: #2a271d;
    border: 2px solid #141414;
}

.signin-button {
    font-family: "Work Sans", sans-serif;
    color: #dedace;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 10px;
    border: 2px solid #dedace;
    border-radius: 5px;
}

.signin-button:hover {
    background-color: #2a271d;
    border: 2px solid #141414;
}

@media (max-width: 1024px) {
    .nav-link {
        padding: 0px 18px;
    }

    .register-button {
        font-size: 12px;
        font-weight: 600;
        padding: 5px 10px;
    }

    .signin-button {
        font-size: 12px;
        font-weight: 600;
        padding: 5px 10px;
    }
}


@media (max-width: 991px) {
    .hamburger {
        display: block;
    }

    .hamburger>svg.active {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .nav-collapse {
        position: fixed;
        top: 60px;
        background-color: rgba(45, 72, 56, 0.9);
        width: 100%;
        height: 0;
        overflow-y: hidden;
        transition: height 0.3s ease-in-out;
    }

    .nav-collapse.active {
        height: 340px;
        transition: height 0.3s ease-in-out;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
    }

    .nav-link {
        padding: 20px 0px;
    }

    .nav-link:active {
        background-color: #dedace;
        color: #141414;
    }

    .nav-link::after {
        display: none;
    }

    .login-container {
        position: relative;
        display: flex;
        justify-content: center;
        top: 0;
        right: 0;
        padding: 20px 0px;
        border-top: 2px solid rgba(165, 165, 165, 0.5);
    }

    .register-button,
    .signin-button {
        margin: 0px 5px;
        padding: 8px 15px;
        font-size: 14px;
    }
}

.registbtn {
    margin-bottom: 30px !important;
}

.form-login {
    margin-top: 10vh !important;
}

.form-forgot {
    margin-top: 23vh !important;
}

@media screen and (max-width: 780px) {

    .form-forgot {
        margin-top: -5vh !important;
    }

    .form-regist {
        padding: 4rem 0 !important;
    }

    .forgotinput {
        width: 350px !important;
    }

    .forgotbtn {
        width: 350px !important;
    }

    .registbtn {
        width: 350px !important;
    }

}



@media screen and (min-width: 873px) {
    #phone-input {
        width: 880px !important;
    }

}


#logo-bg {
    margin-top: 20px;
    width: 95%;
    z-index: -1;
}

option {
    /* transparent */
    background-color: #CCCAB2;
    color: black;
}

/* CHECKBOX STYLE */
.checkbox-wrapper-33 {
    --s-xsmall: 0.625em;
    --s-small: 1.2em;
    --border-width: 1px;
    --c-primary: #CCCAB5;
    --c-primary-20-percent-opacity: #CCCAB5;
    --c-primary-10-percent-opacity: #CCCAB5;
    --t-base: 0.4s;
    --t-fast: 0.2s;
    --e-in: ease-in;
    --e-out: cubic-bezier(.11, .29, .18, .98);
}

.checkbox-wrapper-33 .visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.checkbox-wrapper-33 .checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.checkbox-wrapper-33 .checkbox+.checkbox {
    margin-top: var(--s-small);
}

.checkbox-wrapper-33 .checkbox__symbol {
    display: inline-block;
    display: flex;
    margin-right: calc(var(--s-small) * 0.7);
    border: var(--border-width) solid var(--c-primary);
    position: relative;
    border-radius: 0.1em;
    width: 1.5em;
    height: 1.5em;
    transition: box-shadow var(--t-base) var(--e-out), background-color var(--t-base);
    box-shadow: 0 0 0 0 var(--c-primary-10-percent-opacity);
}

.checkbox-wrapper-33 .checkbox__symbol:after {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    width: 0.25em;
    height: 0.25em;
    background-color: #CCCAB5;
    opacity: 0;
    border-radius: 3em;
    transform: scale(1);
    transform-origin: 50% 50%;
}

.checkbox-wrapper-33 .checkbox .icon-checkbox {
    width: 1em;
    height: 1em;
    margin: auto;
    fill: none;
    stroke-width: 3;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    color: #CCCAB5;
    display: inline-block;
}

.checkbox-wrapper-33 .checkbox .icon-checkbox path {
    transition: stroke-dashoffset var(--t-fast) var(--e-in);
    stroke-dasharray: 30px, 31px;
    stroke-dashoffset: 31px;
}

.checkbox-wrapper-33 .checkbox__textwrapper {
    margin: 0;
}

.checkbox-wrapper-33 .checkbox__trigger:checked+.checkbox__symbol:after {
    -webkit-animation: ripple-33 1.5s var(--e-out);
    animation: ripple-33 1.5s var(--e-out);
}

.checkbox-wrapper-33 .checkbox__trigger:checked+.checkbox__symbol .icon-checkbox path {
    transition: stroke-dashoffset var(--t-base) var(--e-out);
    stroke-dashoffset: 0px;
}

.checkbox-wrapper-33 .checkbox__trigger:focus+.checkbox__symbol {
    box-shadow: 0 0 0 0.25em var(--c-primary-20-percent-opacity);
}

@-webkit-keyframes ripple-33 {
    from {
        transform: scale(0);
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: scale(20);
    }
}

@keyframes ripple-33 {
    from {
        transform: scale(0);
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: scale(20);
    }
}

/* END CHECKBOX STYLE */

.float-container input {
    border: none;
    font-size: 20px;
    /* Increase font size */
    outline: 0;
    padding: 20px 0 14px;
    width: 100%;
    background-color: transparent;
    /* Make background transparent */
}

.float-container input:focus {
    color: #CCCAB2 !important;
}

.float-container label {
    font-family: 'Ade Display' !important;
    /* Set font family */
    font-size: 30px !important;
    position: absolute;
    transform-origin: top left;
}