* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0f;
}


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


.login-section {
    width: 50%;
    padding: 90px 110px;
    background: linear-gradient(135deg, #1a0a2e 0%, #0f0f1a 50%, #0a0a0f 100%);
    display: flex;
    flex-direction: column;
}


.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 70px;
}

.logo-icon {
    width: 55px;
    height: 55px;
}

.logo-icon img {
    width: 100%;
}

.logo-text {
    font-size:50px;
     color: #880c69;
    font-weight: 600;
    font-family:'Times New Roman', Times, serif ;
}


.login-content {
    max-width: 420px;
}

.welcome-title {
    font-size: 46px;
    color: white;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-bottom: 12px;
    font-weight: 700;
}

.welcome-subtitle {
    color: #888;
    margin-bottom: 40px;
    font-size: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group label {
    color: #e0e0e0;
    font-size: 25px;
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
    letter-spacing: 0.3px;
}


.input-wrapper {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.input-wrapper:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(155, 89, 182, 0.3);
}

.input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(155, 89, 182, 0.6);
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.1);
}


.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.toggle-password svg {
    width: 18px;
    height: 18px;
    opacity: 0.8;
    transition: 0.3s;
}

.toggle-password:hover svg {
    opacity: 1;
}


#eyeClosed {
    display: none;
}



.input-wrapper svg {
    width: 18px;
    height: 18px;
    color: #e4e4e4;
    opacity: 0.7;
    margin-right: 14px;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.input-wrapper:focus-within svg {
    opacity: 1;
}


.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    transition: color 0.3s ease;
}

.input-wrapper:focus-within input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}


.sign-in-btn {
    margin-top: 10px;
    padding: 18px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #9b59b6 0%, #b06bf1 100%);
    color: white;
    font-size: 17px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
    letter-spacing: 0.5px;
}

.sign-in-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
    background: linear-gradient(135deg, #a569c7 0%, #bc7cf5 100%);
}

.sign-in-btn:active {
    transform: translateY(0);
}


.signup-link {
    margin-top: 25px;
    color: #888;
    text-align: center;
    font-size: 15px;
}

.signup-link a {
    color: #b06bf1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: #d4a5f5;
    text-decoration: underline;
}


.image-section {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.image-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(10, 10, 15, 0.75) 40%,
        rgba(10, 10, 15, 0.4) 70%,
        rgba(10, 10, 15, 0.15) 100%
    );
    z-index: 1;
}

.rightimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.experience-card {
    position: absolute;
    bottom: 60px;
    right: 60px;
    background: rgba(26, 10, 46, 0.85);
    padding: 25px;
    border-radius: 16px;
    max-width: 300px;
    z-index: 2;
    backdrop-filter: blur(10px);
    animation: 
        slideUpCard 0.8s ease-out,
        floatCard 4s ease-in-out infinite;

    transition: 0.3s;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(155, 89, 182, 0.3);
}

@keyframes slideUpCard {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}



.experience-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.experience-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}


@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .login-section,
    .image-section {
        width: 100%;
    }

    .login-section {
        padding: 60px 40px;
    }

    .image-section {
        height: 300px;
        display: none;
    }
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(26, 10, 46, 0.9) inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}