html {
    scroll-behavior: smooth;
}

/* body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #172A39 0%, #0a1621 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }

        body::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(25, 139, 234, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: -250px;
            right: -250px;
            animation: pulse 8s ease-in-out infinite;
        }

        body::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(25, 139, 234, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -200px;
            left: -200px;
            animation: pulse 6s ease-in-out infinite reverse;
        } */
/* 
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        } */

.NewLogin-section {
    padding: 30px 0px 100px 0;
}

.NewLogincontainer {
    width: 100%;
    max-width: 1200px;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-height: 530px;
    height: 100%;
}

.NewLoginleft-panel {
    background: linear-gradient(135deg, #198BEA 0%, #1565c0 100%);
    padding: 60px 50px;
    padding: 50px 50px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.NewLoginleft-panel::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.NewLoginleft-panel::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
}

.NewLoginwelcome-content {
    position: relative;
    z-index: 1;
    color: white;
}

.NewLoginlogo {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
    transition: transform 0.3s ease;
}

.NewLoginlogo:hover {
    transform: scale(1.05);
}

.NewLoginwelcome-content h1 {
    font-size: 42px;
    font-size: 32px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.wave {
    display: inline-block;
    transform-origin: 70% 70%;
    animation: wave 1.2s ease-in-out infinite;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(12deg);
    }

    45% {
        transform: rotate(-12deg);
    }

    60% {
        transform: rotate(8deg);
    }

    75% {
        transform: rotate(-6deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wave {
        animation: none;
    }
}

.NewLoginwelcome-content p {
    font-size: 16px;
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 40px;
}

.NewLoginfeature-list {
    list-style: none;
}

.NewLoginfeature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    margin-bottom: 8px;
    font-size: 15px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.NewLoginfeature-list li:hover {
    transform: translateX(5px);
}

.NewLoginfeature-list i {
    margin-right: 12px;
    margin-right: 10px;
    font-size: 18px;
    font-size: 14px;
}

.NewLoginright-panel {
    padding: 60px 50px;
    padding: 50px 50px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.NewLoginform-header {
    margin-bottom: 40px;
    margin-bottom: 10px;
    text-align: center;
}

.NewLoginform-header h2 {
    font-size: 32px;
    font-size: 22px;
    color: #172A39;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 40px;
    line-height: 28px;
}

.NewLoginform-header p {
    color: #666;
    font-size: 15px;
}

.NewLoginform-group {
    margin-bottom: 24px;
    margin-bottom: 20px;
}

.NewLoginform-group label {
    display: block;
    margin-bottom: 8px;
    color: #172A39;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.NewLoginrequired {
    color: #ff4444;
    margin-left: 3px;
}

.NewLogininput-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.NewLogininput-wrapper i.NewLogininput-icon {
    position: absolute;
    left: 16px;
    color: #198BEA;
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s ease;
}

.NewLoginform-group input {
    width: 100%;
    padding: 14px 50px 14px 45px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.NewLoginform-group input::placeholder {
    font-size: 15px;
}

.NewLoginform-group input:focus {
    outline: none;
    border-color: #198BEA;
    background: white;
    box-shadow: 0 0 0 4px rgba(25, 139, 234, 0.1);
    transform: translateY(-1px);
}

.NewLogininput-wrapper:focus-within .NewLogininput-icon {
    color: #1565c0;
    transform: scale(1.1);
}

.NewLogintoggle-password {
    position: absolute;
    right: 16px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    z-index: 3;
    background: transparent;
    border: none;
    font-size: 16px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.NewLogintoggle-password:hover {
    color: #198BEA;
    transform: scale(1.15);
}

.NewLoginform-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    margin-bottom: 10px;
}

.GoogleCapture {
    /* width: 20px; */
    /* height: 30px; */
    /* background: red; */
    /* box-sizing: border-box; */
    /* display: flex
; */
    /* justify-content: center; */
    /* align-items: baseline; */
    transform: scale(0.7);
    /* background-color: red; */
    height: 80px;
    margin: 0 0 5px 0;
    /*  transform-origin: center; */
}

.NewLogincheckbox-wrapper {
    display: flex;
    align-items: center;
}

.NewLogincheckbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #198BEA;
    transition: transform 0.2s ease;
}

.NewLogincheckbox-wrapper input[type="checkbox"]:hover {
    transform: scale(1.1);
}

.NewLogincheckbox-wrapper label {
    font-size: 14px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.NewLogincheckbox-wrapper label:hover {
    color: #172A39;
}

.NewLoginforgot-link {
    color: #198BEA;
    text-decoration: none;
    font-size: 14px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.NewLoginforgot-link:hover {
    color: #1565c0;
    text-decoration: underline;
}

.NewLoginbtn-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #198BEA 0%, #1565c0 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(25, 139, 234, 0.3);
}

.NewLoginbtn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 139, 234, 0.5);
}

.NewLoginbtn-primary:active {
    transform: translateY(-1px);
}

/* .NewLogindivider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    margin: 20px 0;
    color: #999;
    font-size: 14px;
}

.NewLogindivider::before,
.NewLogindivider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

.NewLogindivider span {
    padding: 0 16px;
} */

/* .NewLoginsocial-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
} */

/* .NewLoginbtn-social {
    padding: 14px;
    padding: 10px;
    border: 2px solid #e8e8e8;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #172A39;
}

.NewLoginbtn-social:hover {
    border-color: #198BEA;
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.NewLoginbtn-social i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.NewLoginbtn-social:hover i {
    transform: scale(1.2);
}

.NewLoginbtn-social.linkedin i {
    color: #0077b5;
}

.NewLoginbtn-social.google i {
    color: #ea4335;
} */

.NewLoginbottom-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.NewLoginlink-item {
    color: #198BEA;
    text-decoration: none;
    font-size: 14px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.NewLoginlink-item:hover {
    color: #1565c0;
    /* text-decoration: underline; */
}

.NewLogincenter-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.NewLogincenter-link a {
    color: #198BEA;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.NewLogincenter-link a:hover {
    color: #1565c0;
    text-decoration: underline;
}

/* Edit Email Icon Styling */
.NewLoginedit-email-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #198BEA;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: transparent;
    text-decoration: none;
}

.NewLoginedit-email-icon:hover {
    background: rgba(25, 139, 234, 0.1);
    color: #1565c0;
    transform: translateY(-50%) scale(1.1);
}

.NewLoginedit-email-icon i {
    font-size: 14px;
}

/* Adjust email input padding for edit icon */
.NewLoginform-group input[type="email"] {
    padding-right: 50px !important;
}



@media only screen and (max-width: 1250px) {
    .NewLogincontainer {
        width: 90%;
        max-height: max-content;
    }
}

@media (max-width: 968px) {
    .NewLogincontainer {
        grid-template-columns: 1fr;
    }

    .NewLoginleft-panel {
        display: none;
    }

    .NewLoginright-panel {
        padding: 40px 30px;
    }

    .NewLoginright-panel {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .NewLoginsocial-buttons {
        grid-template-columns: 1fr;
    }

    .NewLoginform-header h2 {
        /* font-size: 28px; */
    }

    .NewLoginbottom-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .NewLoginedit-email-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .NewLoginedit-email-icon i {
        font-size: 12px;
    }
}