/*<style >*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #4338ca;
    --secondary: #1e293b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --background: #f8fafc;
    --error: #ef4444;
    --success: #10b981;
    --border: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.05);
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Glassmorphism Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.glass-shapes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.glass-shape {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    animation: float-shape 20s infinite ease-in-out;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) translateX(20px) rotate(5deg);
    }

    50% {
        transform: translateY(0) translateX(40px) rotate(10deg);
    }

    75% {
        transform: translateY(30px) translateX(20px) rotate(5deg);
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: pulse-orb 15s infinite alternate ease-in-out;
}

@keyframes pulse-orb {
    0% {
        transform: scale(1);
        opacity: 0.05;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }

    100% {
        transform: scale(1);
        opacity: 0.05;
    }
}

.glass-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(79, 70, 229, 0) 0%, rgba(79, 70, 229, 0.2) 50%, rgba(79, 70, 229, 0) 100%);
    animation: slide-line 15s infinite linear;
    opacity: 0.1;
}

@keyframes slide-line {
    0% {
        transform: translateY(0) translateX(-100%);
    }

    100% {
        transform: translateY(0) translateX(100vw);
    }
}

.glass-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: rgba(79, 70, 229, 0.3);
    border-radius: 50%;
    animation: float-dot 10s infinite linear;
}

@keyframes float-dot {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    width: 1000px;
    height: 600px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.image-section {
    flex: 1;
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .image-section::before {
        content: '';
        position: absolute;
        width: 150%;
        height: 150%;
        background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
        top: -25%;
        left: -25%;
        opacity: 0.4;
        animation: pulse 15s infinite alternate;
    }

    .image-section::after {
        content: '';
        position: absolute;
        width: 150%;
        height: 150%;
        background: radial-gradient(circle, var(--primary-dark) 0%, transparent 70%);
        bottom: -25%;
        right: -25%;
        opacity: 0.4;
        animation: pulse 15s infinite alternate-reverse;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.illustration {
    width: 80%;
    height: auto;
    z-index: 1;
    animation: float-illustration 6s ease-in-out infinite;
}

@keyframes float-illustration {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.form-section {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .form-group input {
        width: 100%;
        padding: 12px 15px;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(79, 70, 229, 0.1);
        border-radius: 8px;
        font-size: 14px;
        color: var(--text-dark);
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
            background: rgba(255, 255, 255, 0.95);
        }

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.remember {
    display: flex;
    align-items: center;
}

    .remember input {
        margin-right: 8px;
        accent-color: var(--primary);
    }

    .remember label {
        font-size: 14px;
        color: var(--text-light);
    }

.forgot a {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .forgot a:hover {
        color: var(--primary-dark);
    }

.btn {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    }

    .btn:active {
        transform: translateY(0);
    }

.signup {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
}

    .signup a {
        color: var(--primary);
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .signup a:hover {
            color: var(--primary-dark);
        }

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(150%);
    transition: transform 0.5s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .notification.success {
        background: linear-gradient(135deg, var(--success) 0%, rgba(16, 185, 129, 0.8) 100%);
        border: 1px solid rgba(16, 185, 129, 0.3);
    }

    .notification.error {
        background: linear-gradient(135deg, var(--error) 0%, rgba(239, 68, 68, 0.8) 100%);
        border: 1px solid rgba(239, 68, 68, 0.3);
    }

    .notification.show {
        transform: translateX(0);
    }

@media (max-width: 1000px) {
    .container {
        width: 90%;
        height: auto;
        flex-direction: column;
    }

    .image-section {
        display: none;
    }

    .form-section {
        padding: 40px 30px;
    }
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 70%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

    .toggle-password:hover {
        color: #4f46e5; /* Hover color */
    }


