﻿
html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
}

.container {
    max-width: 100%!important;
    padding: 0px!important;
}

.left-side {
    position: relative;
    background-image: url('/img/Images/fits-air-img-1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.col-md-6.left-side {
    padding: 3rem 3rem;
}

.login-img-content {
    z-index: 1;
    position: relative;
    text-align: center;
}

.left-side::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(2 30 71 / 75%);
    z-index: 0;
}

.blue-text {
    color: #c3cee3;
    font-size: 18px !important;
    line-height: 25px;
}

.login-logo-img img {
    width: 170px;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
}

.right-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-side.col-md-6 {
    padding: 30px 95px;
}

.title-section {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #E1E5EA;
}

.login-img-section {
    background-color: rgb(234 0 41 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .7rem .5rem .5rem .7rem;
    border-radius: .75rem;
}

.login-img-section img {
    width: 40px;
}

.login-form-box label {
    color: #0b2567;
    font-weight: 600;
}

.login-form-box {
    border-bottom: 1px solid #E1E5EA;
    padding-bottom: 35px;
    margin-bottom: 25px;
    padding-left: 10px;
    padding-right: 10px;
}

.form-wrapper {
    width: 100%;
    max-width: 500px;
}

.icon-field {
    display: flex;
    align-items: center;
    position: relative;
}

.input-icon {
    position: absolute;
    margin-left: 15px;
}

.form-control {
    border: 2px solid #e1e5ea !important;
    padding: 10px 15px 10px 45px !important;
    height: 50px !important;
    border-radius: 0.75rem !important;
    font-size: 15px !important;
    color: #4a5568!important;
}

.form-control:focus {
    border: 2px solid #0b2567!important;
    box-shadow: 0 0 0 3px rgb(11 37 103 / 0.2)!important;
}

.input-field-group .material-symbols-outlined {
    color: #9ca3af;
}

.input-field-group .text-danger {
    color: #f53648 !important;
    font-size: 15px;
    font-weight: 500 !important;
    text-align: right;
    top: 4px;
    position: relative;
    right: 0px;
}

.eye-toggle-field {
    position: absolute;
    right: 15px;
    color: #0b2567;
}

.forgot-password-sec {
    margin: 1.5rem 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-checkbox {
    width: 19px;
    height: 19px;
    border: 2px solid #0b2567;
    border-radius: 4px;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.remember-me input[type="checkbox"] {
    display: none;
}

.remember-me input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #0b2567;
    border-color: #0b2567;
}

.remember-me input[type="checkbox"]:checked + .custom-checkbox::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 3px;
    font-size: 13px;
    color: #fff;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 0px !important;
}

.remember-text {
    font-weight: 500 !important;
    color: #0b2567;
    font-size: 15px;
    line-height: 1rem;
}

.forgot-link {
    color: #0b2567;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link {
    color: #0b2567;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: center;
}

.forgot-link:hover, .login-link:hover {
    color: #ea0029;
    text-decoration: underline;
}

.login-btn {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 200ms ease;
    background-color: #ea0029;
    width: 100%;
    padding: 14px 15px;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(234 0 41 / 15%), 0 2px 4px -2px rgb(234 0 41 / 15%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.login-btn:hover {
    background-color: #0b2567;
}

.login-btn:focus {
    outline: none;
}