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

.login-col-1 {
    width: 50%;
    background-color: #11546f;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0px 100px;
}

.login-col-2 {
    width: 50%;
    background-color: #fff;
    padding: 50px 80px;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-1 {
    background-color: rgb(11 181 203 / 0.2);
    width: 384px;
    height: 384px;
    filter: blur(64px);
    border-radius: 9999px;
    position: absolute;
    top: -80px;
    left: -80px;
    animation: float1 12s infinite alternate;
}

.circle-2 {
    background-color: rgb(11 181 203 / 0.3);
    width: 400px;
    height: 400px;
    border-radius: 9999px;
    position: absolute;
    right: -10%;
    bottom: -10%;
    animation: float2 15s infinite alternate;
}

.circle-3 {
    border: 40px solid rgb(11 181 203 / 0.1);
    border-radius: 9999px;
    width: 256px;
    height: 256px;
    position: absolute;
    top: 20%;
    left: 10%;
    animation: float3 18s infinite alternate;
}

.circle-4 {
    background-color: rgb(11 181 203 / 0.2);
    border-radius: 9999px;
    width: 10rem;
    height: 10rem;
    position: absolute;
    top: 10%;
    right: 20%;
    box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
    animation: float4 14s infinite alternate;
}

.circle-5 {
    border: 60px solid rgb(255 255 255 / 0.05);
    border-radius: 9999px;
    height: 20rem;
    width: 20rem;
    position: absolute;
    left: 5%;
    bottom: 15%;
    animation: float5 20s infinite alternate;
}

.circle-1,
.circle-2,
.circle-3,
.circle-4,
.circle-5 {
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 60px) scale(1.1);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-60px, -40px);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, -50px) rotate(10deg);
    }
}

@keyframes float4 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, 40px) scale(0.9);
    }
}

@keyframes float5 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, -30px);
    }
}

.content-sec {
    z-index: 1;
}

.content-sec p {
    color: rgb(255 255 255 / 0.8);
    font-size: 18px;
    line-height: 27px;
}

.text-lite-blue {
    color: #0bb5cb;
}

.content-sec h1 {
    font-size: 85px;
    line-height: 85px;
    font-weight: 800 !important;
}

.logo-full {
    width: 200px;

}

.login-form {
    width: 100%;
}

.login-form-box {
    margin: 0px auto;
    max-width: 450px;
    width: 100%;
    position: relative;
}

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

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

.input-field-group label {
    font-weight: 600 !important;
    color: #334155;
    font-size: 14px;
}

.form-control {
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    padding: 10px 15px 10px 45px;
    height: 50px;
    border-radius: 0.75rem;
}

.form-control:focus {
    background-color: #f2f7fc;
    border: 1px solid #11546f;
    box-shadow: 0 0 0 3px rgb(17 84 111 / 20%);
}

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

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

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

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

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #11546f;
    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: #11546f;
    border-color: #11546f;
}

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

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

.remember-text {
    font-weight: 600;
    color: #11546f;
    line-height: 1rem;
    font-size: 14px;
}

.forgot-link, .login-link {
    color: #11546f;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.forgot-link:hover, .login-link:hover {
    color: #0bb5cb;
}

.login-btn {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 200ms ease;
    background-color: #11546f;
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgb(17 84 111 / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

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

.copyright-text p {
    color: #94a3b8!important;
    letter-spacing: 0.1em;
    font-weight: 500 !important;
    font-size: 12px!important;
    text-transform: uppercase;
}

.copyright-text {
    border-top: 1px solid #f1f5f9;
    width: 100%;
}

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

@media screen and (max-width: 991px) {
    .login-container {
        width: 100%;
        display: block;
    }

    .login-col-1 {
        width: 100%;
        padding: 60px 100px;
    }

    .login-col-2 {
        width: 100%;
    }

}

@media screen and (max-width: 767px) {
    html, body {
        overflow-y: scroll;
        overflow: scroll;
    }

    .login-col-2 {
        padding: 30px 25px 50px;
    }

    .login-col-1 {
        width: 100%;
        padding: 60px 30px;
    }

    .content-sec h1 {
        font-size: 45px;
        line-height: 45px;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
    }

    .circle-3 {
        width: 150px;
        height: 150px;
    }

    .circle-4 {
        width: 10rem;
        height: 10rem;
        top: 0%;
        right: 10%;
    }

    .circle-5 {
        height: 200px;
        width: 200px;
        left: 0%;
        bottom: 55%;
    }
}

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

}
