body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    color: #242D40;
}

/* Login */

.login_main {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: calc(100vh - 76px);
}

.login_main h2 {
    font-size: 40px;
    line-height: 58px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 300;
}

.login_form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.login_img {
    width: 50%;
}

.login_img img {
    width: 100%;
    min-height: calc(100vh - 76px);
    object-fit: cover;
    object-position: center;
}

.login_form h4 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.login_form input,
.login_form textarea {
    padding: 14px 15px;
    border: none !important;
    background: #F3F3F3;
    color: #000;
    font-size: 15px;
    outline: none;
    border-radius: 0;
    font-weight: 300;
}

.keep_signup {
    color: #A7A7A7;
    font-weight: 300;
    font-size: 11px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    flex-direction: row !important;
}

.login_form input::placeholder,
.login_form textarea::placeholder {
    color: #BEBFC4;
}

.password_field {
    position: relative;
}

.password_field i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #949494;
}

.login_form form>p {
    font-size: 11px;
    text-transform: uppercase;
    margin: 0;
    color: #A7A7A7;
    font-weight: 300;
    letter-spacing: 1px;
}

.login_form form>p a {
    letter-spacing: 1px;
    color: #A7A7A7;
}

.login_form form button {
    background: #242D40;
    border: none !important;
    outline: none;
    color: #fff;
    font-size: 15px;
    padding: 10px 30px;
    font-weight: 300;
    transition: 0.4s;
}

.login_form form button:hover {
    border: 2px solid #000 !important;
}

.login_form>p {
    color: #242D40;
    font-weight: 300;
    font-size: 11px;
    text-transform: uppercase;
    margin-top: 30px;
    letter-spacing: 1px;
}

.login_form>p a {
    color: #242D40;
    text-decoration: underline;
    font-weight: 400;
    letter-spacing: 1px;
}

.login_form>p a:hover {
    font-weight: 700;
}

.keep_signup .custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    color: #333;
    transition: color 0.3s;
}

.keep_signup .custom-checkbox input[type="checkbox"] {
    display: none;
}

.keep_signup .custom-checkbox .checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-right: 10px;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
    transform-style: preserve-3d;
}

.keep_signup .custom-checkbox .checkmark::before {
    content: "\2713";
    font-size: 16px;
    color: transparent;
    transition: color 0.3s, transform 0.3s;
}

.keep_signup .custom-checkbox input[type="checkbox"]:checked+.checkmark {
    background-color: #333;
    border-color: #333;
    transform: scale(1.1) rotateZ(360deg) rotateY(360deg);
}

.keep_signup .custom-checkbox input[type="checkbox"]:checked+.checkmark::before {
    color: #fff;
}

.keep_signup .custom-checkbox:hover {
    color: #666;
}

.keep_signup .custom-checkbox:hover .checkmark {
    border-color: #666;
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.keep_signup .custom-checkbox input[type="checkbox"]:focus+.checkmark {
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
    outline: none;
}

.keep_signup .custom-checkbox .checkmark,
.keep_signup .custom-checkbox input[type="checkbox"]:checked+.checkmark {
    transition: background-color 1.3s, border-color 1.3s, color 1.3s, transform 0.3s;
}

.tab-pane form>p a {
    color: #242D40;
    text-decoration: underline !important;
}