*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
}

@font-face {
    font-family: myNeoFont;
    src: url('/fonts/NoeDisplay-Bold.ttf');
}

html {
    word-spacing: 1px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    scroll-behavior: smooth;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

h1,
h2,
h3 p,
button,
input {
    font-family: 'DM Sans', sans-serif;
}
/* utility */

.mb-3 {
    margin-bottom: 3em;
}

.mr-2 {
    margin-right: 2em;
}

.ml-2 {
    margin-left: 2em;
}

.mr-1 {
    margin-right: 1em;
}

.ml-1 {
    margin-left: 1em;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.map--bg {
    background: #001333 url('../images/map-background.png');
    background-size: 100% 100%;
}

div.main--container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.aside {
    display: none;
}

.aside--height {
    height: 100vh;
}

.aside--width {
    width: 25%;
}

.aside--padding {
    padding: 45px 40px;
    box-sizing: border-box;
}

.leatherback-blue-logo {
    display: block;
}

.login--card {
    width: 100%;
    background: #ffffff;
    border-radius: 4px;
    padding: 30px 25px;
    margin-bottom: 30px;
}

.text-white {
    color: #ffffff;
}

.main--body {
    flex-grow: 1;
    background-color: #f6f8fa;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.form-group__input:focus-within {
    box-shadow: #e3edff 0 0 0 0.125rem;
}

.form-group__input::placeholder {
    opacity: 0.65;
    font-weight: normal;
    font-size: 14px;
    color: #0b1320;
}

.form--input--border {
    border: 1px solid #e2e8f0;
    outline: none;
    font-size: 16px;
    padding: 17px 15px;
    border-radius: 8px;
    box-sizing: border-box;
    font-weight: 500;
    color: #2d3748;
    width: 100%;
}

.form--button {
    border: none;
    height: 58px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    background: #377ff7;
    color: #ffffff;
    letter-spacing: 0.02rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .form--button:hover {
        background: #4887f5;
        transition: 1s ease-in-out all;
    }

    .form--button:focus {
        outline: none;
    }

/* media for large screen */
@media screen and (min-width: 769px) {
    aside.aside {
        display: block;
    }

    .login--card {
        width: 50%;
        padding: 50px 40px 40px 40px;
    }

    .main--body {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        padding: 30px;
    }

    .leatherback-blue-no_logo {
        display: none;
    }
}

/* media for larger screen */
@media screen and (min-width: 1200px) {
    .login--card {
        width: 30%;
        padding: 50px 40px 40px 40px;
    }

        .login--card.email-verify {
            width: 50%;
            padding: 50px 40px 40px 40px;
        }
}

label.absolute-label {
    position: absolute;
    padding: 6px 16px;
    font-size: 10px;
    color: gray;
}

.tag-verify {
    background: #f7f7f7;
    border-radius: 4px;
    padding: 8px 12px;
    color: gray;
    font-size: 14px;
    text-align: center;
}

    .tag-verify.check {
        background: rgba(39, 174, 96, 0.06);
        color: #27ae60;
    }

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 10px;
    padding: 15px 0;
}

.leatherback-blue-logo-lg img {
    height: 4em;
}

.main--body__header {
    margin: 2rem auto;
    width: 100%;
    text-align: center;
}

.main--body__card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login--card__title {
    margin: 0;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.275rem;
    color: #0b1320;
    text-align: left;
}

    .login--card__title p {
        margin-top: 6px;
        font-size: 14px;
        color: #4a5568;
    }

.align--left {
    text-align: left !important;
}

.form-container {
    margin-top: 35px;
    width: 100%;
}

.form-control {
    margin-bottom: 18px;
    position: relative;
    height: 100%;
    height: 100%;
}

.button-icon__right-side {
    outline: none;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    position: absolute;
    right: 8px;
    top: -7px;
    height: 100%;
    padding: 1.2rem;
    cursor: pointer;
}

.form-input-right {
    margin-bottom: 18px;
    position: relative;
    height: 100%;
    height: 100%;
}

.form--button {
    width: 100%;
}

.position--middle {
    margin-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link {
    color: #377ff7;
    text-decoration: none;
}

button[disabled] {
    opacity: 0.8;
}

input#Password {
    padding-right: 43px;
}

.aside__title {
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    font-family: myNeoFont;
}

.aside--logo {
    width: '160px';
    height: '25px';
}

.aside__sub-title {
    font-size: 1.5rem;
    padding-top: 1rem;
}

.sm-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-bottom: 50px;
}

.sm-logo-img {
    width: 160px;
    /* height: 25px; */
}

.card-title {
    margin: 0;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.375rem;
    color: #0b1320;
    text-align: center;
    width: 100%;
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-bottom: 50px;
    width: 100%;
    margin-top: 30px;
}

.login--card p {
    margin-top: 1rem;
    font-size: 14px;
    color: #4a5568;
    width: 100%;
    text-align: center;
}

.form--button.custom-size {
    width: 190px;
    margin: 3rem auto;
}

.form-group__input {
    margin-bottom: 18px;
}

.is-invalid {
    display: none;
    color: red;
    font-size: small;
    margin-bottom: 20px;
}

.sign-up--button {
    background: #ffffff;
    outline: none;
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    color: #377ff7;
    border: none;
}

.tag-verify.check:before {
    content: '\2713 ';
    color: #158544;
    margin-right: 5px;
}

#notify {
    position: absolute;
    top: 20px;
    right: 15px;
    z-index: 10;
}

.notify-box {
    position: relative;
}

.flex {
    display: flex;
}

.notify-box {
    min-height: 100px;
    width: 360px;
    top: 20px;
    right: -25%;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #ededed;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: white;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 1s;
    animation: slide 0.5s forwards;
    animation-delay: 0.3s;
}
/* .notify-body.success {
  display: flex;
} */
.notify-body.success:before {
    content: '\2713';
    display: inline-block;
    padding: 5px;
    border: 2px solid #27ae60;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    line-height: 13px;
    color: #27ae60;
}

.notify-body.error:before {
    content: '\0021';
    display: inline-block; /* padding: 5 px ; */
    border: 2px solid red;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    line-height: 13px;
    color: red;
    text-align: center;
    padding-top: 4px;
}

.notify-body-text--body {
    margin-left: 40px;
    margin-top: 10px;
}

    .notify-body-text--body a {
        cursor: pointer;
        color: #377ff7;
        text-decoration: underline;
        font-weight: 500;
    }

.notify-body-text--title {
    margin-left: 15px;
    font-weight: 500;
    text-align: left !important;
}

.notify-body.error .notify-body-text--title {
    color: red;
}

.notify-body.success .notify-body-text--title {
    color: #27ae60;
}

.notify-box .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgb(148, 17, 17);
    cursor: pointer;
}

.login--card p.enterAccountText {
    text-align: left;
}

@-webkit-keyframes slide {
    100% {
        right: -20%;
    }
}

@keyframes slide {
    100% {
        right: 20px;
    }
}

.center_text {
    text-align: center;
}
