﻿* {
    overflow: hidden;
}

.login-page-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-row {
    background-color: #fff;
    width: 1250px;
    padding: 15px;
    border-radius: 15px;
    z-index: 1;
    box-shadow: 0px 0px 20px 0px rgb(107 134 192 / 12%);
}

.left-col {
    background-image: url('/img/Images/inter-company-img-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: 40px;
}

.left-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: 1;
    background: linear-gradient( 180deg, #023b57 40%, rgba(0, 0, 0, 0) 80% );
}

.right-col {
    padding: 40px;
}

.floating-shapes {
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, #d6edff, #eaf6ff);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 250px;
    height: 250px;
    top: 2%;
    left: 2%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 90%;
    left: 80%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 170px;
    height: 170px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape:nth-child(4) {
    width: 80px;
    height: 80px;
    top: 90%;
    left: 50%;
    animation-delay: 1s;
}

.shape:nth-child(5) {
    width: 120px;
    height: 120px;
    top: 5%;
    left: 90%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #007bff;
    border-radius: 50%;
    animation: particle-fall 8s linear infinite;
}

@keyframes particle-fall {
    0% {
        transform: translateY(-10vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) translateX(50px);
        opacity: 0;
    }
}

.login-header {
    color: #fff !important;
    z-index: 2;
    position: relative;
    text-align: center;
}

.login-header h1 {
    color: #fff !important;
}

.light-text {
    color: #26bad7;
}

.login-img-1 {
    width: 400px;
    margin: 30px auto 0;
    display: block;
}

.header-content p {
    color: #5d666f;
    text-align: center;
}

.header-content h2 {
    color: #004c73;
    text-align: center;
}

.form-control, .form-control:focus {
    border-radius: 1rem;
    padding: 14px 20px;
    background: linear-gradient(130deg, #f5fdff, #e0fafe);
    border: 2px solid #a3d9e4;
    color: #023b57;
    font-weight: 600;
    height: 55px;
    box-shadow: inset 0 0 0 transparent;
}

input.form-control:-webkit-autofill,
input.form-control:-webkit-autofill:hover,
input.form-control:-webkit-autofill:focus {
    border-radius: 1rem;
    padding: 14px 20px;
    background: linear-gradient(130deg, #f5fdff, #e0fafe);
    border: 2px solid #a3d9e4;
    -webkit-text-fill-color: #023b57 !important;
    font-weight: 600;
    height: 55px;
}


.form-inline-field {
    position: relative;
}

.form-group label {
    font-size: 16px;
    font-weight: 700;
    color: #023b57;
    margin-bottom: 0px;
}

.form-inline-field i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #023b57;
}

.form-inline-field .toggle-password {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #023b57;
    cursor: pointer;
}

.login-button {
    width: 100%;
    background: linear-gradient(135deg, #138ca4 0%, #26bad7 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-button:hover::before {
    left: 100%;
}

.login-button:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #26bad7 0%, #138ca4 100%);
}

.custom-checkbox-wrapper {
    margin-top: 1.5rem;
}

.custom-checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    padding-left: 28px;
}

.custom-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox-box {
    position: absolute;
    left: 0;
    top: 2px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #004c73;
    border-radius: 4px;
    transition: all 0.2s;
}

.custom-checkbox-input:checked + .custom-checkbox-box {
    background-color: #004c73;
    border-color: #004c73;
}

.custom-checkbox-box::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox-input:checked + .custom-checkbox-box::after {
    display: block;
}

a.text-muted:hover {
    color: #26bad7 !important;
    text-decoration: none;
}

.navbar {
    display: none;
}