
.container {
    background: none;
    width: 900px;
    max-width: 98vw;
    min-height: 550px;
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
}

.form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 320px;
    padding: 40px 24px;
}

.left-panel {
    background: linear-gradient(135deg, #1ca05a 60%, #0d1936 100%);
    color: #fff;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.left-panel::before {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 300px;
    height: 300px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

.left-panel .content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.logo-circle {
    background: #fff;
    border-radius: 15px;
    width: 90px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.logo-circle img {
    width: 100%;
    height: 100%;
}

.left-panel h2 {
    margin: 16px 0 8px 0;
    font-size: 2rem;
    font-weight: 700;
}

.left-panel p {
    font-size: 1rem;
    margin-bottom: 32px;
}

.ghost {
    background: transparent;
    border: 1.5px solid #fff;
    color: #fff;
    border-radius: 24px;
    padding: 12px 32px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 24px;
    transition: background 0.2s, color 0.2s;
}

.ghost:hover {
    background: #fff;
    color: #1ca05a;
}

.links {
    font-size: 0.9rem;
    margin-top: 24px;
}

.links a {
    color: #fff;
    text-decoration: underline;
    margin: 0 4px;
}

.right-panel {
    background: #fff;
    color: #222;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.right-panel::before {
    content: "";
    position: absolute;
    left: -120px;
    top: -120px;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #1ca05a 60%, #0d1936 100%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.form {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    position: relative;
    z-index: 1;
    background: none;
    transition: opacity 0.4s, transform 0.4s;
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.form p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.form input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 24px;
    border: 1.5px solid #d4d4d4;
    background: #f4f4f4;
    font-size: 1rem;
    outline: none;
    margin-bottom: 0;
    transition: border 0.2s;
}

.form input:focus {
    border: 1.5px solid #1ca05a;
}

.form a {
    color: #1ca05a;
    font-size: 0.95rem;
    text-decoration: none;
    align-self: flex-end;
}

.form .btn {
    width: 100%;
    padding: 12px 0;
    border-radius: 24px;
    background: #0d1936;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.form.hide {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.form.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    position: relative;
}

.form .btn:hover {
    background: #0d1936;
}

.form span {
    font-size: 0.95rem;
    color: #444;
}

.form span a {
    color: #1ca05a;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        width: 98vw;
        min-width: 0;
        border-radius: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    .form-panel {
        min-width: 0;
        width: 100%;
        padding: 32px 8vw;
    }

    .left-panel,
    .right-panel {
        border-radius: 0;
    }

    .left-panel::before,
    .right-panel::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .container {
        min-width: 0;
        width: 100vw;
        border-radius: 0;
        box-shadow: none;
        border-radius: 16px;
        border-radius: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);

    }

    .form-panel {
        padding: 24px 4vw;
    }

    .form {
        max-width: 98vw;
    }
}

.login-eye {
            position: relative;
            width: 100%;
        }
        .eye-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            font-size: 1.2rem;
            transform: translateY(-50%);
            cursor: pointer;
            color: #000;
        }
/* profile avater css */
