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

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

/* Left Panel */
.left-panel {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
}

.brand h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.brand p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 3rem;
}

.illustration {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.chart-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.chart-line {
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #00ccff);
    border-radius: 1px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.chart-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.chart-bars {
    display: flex;
    gap: 0.5rem;
    align-items: end;
    height: 60px;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, #00ff88, #00ccff);
    border-radius: 2px;
    animation: barGrow 1.5s ease-out;
}

@keyframes barGrow {
    from {
        height: 0 !important;
    }
}

.floating-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 100px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.symbol {
    font-weight: 600;
    font-size: 0.9rem;
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
}

.change {
    font-size: 0.8rem;
    font-weight: 500;
}

.positive {
    color: #00ff88;
}

/* Right Panel */
.right-panel {
    flex: 1;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-form-container {
    width: 100%;
    max-width: 400px;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-header p {
    color: #888888;
    font-size: 1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #cccccc;
    font-size: 0.9rem;
}

.form-group input {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.2s ease;
    width: 100%;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder {
    color: #666666;
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888888;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #cccccc;
}

.error-message {
    color: #ff4444;
    font-size: 0.8rem;
    min-height: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #cccccc;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-container input:checked+.checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-container input:checked+.checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: #5a6fd8;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

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

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

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

.form-footer p {
    color: #888888;
    font-size: 0.9rem;
}

.signup-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.signup-link:hover {
    color: #5a6fd8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .left-panel {
        flex: none;
        height: 40vh;
        padding: 1rem;
    }

    .brand h1 {
        font-size: 2rem;
    }

    .illustration {
        max-width: 300px;
    }

    .floating-cards {
        flex-direction: column;
        gap: 0.5rem;
    }

    .right-panel {
        flex: none;
        height: 60vh;
        padding: 1rem;
    }

    body {
        overflow: auto;
    }
}

body {
    font-family: "Poppins", sans-serif;
    background: #0C0A14;
    color: #ffffff;
    margin: 0;
    height: 100vh;
    flex-direction: column;
    height: 100vh;
    display: flex;
}


.container {

    margin: auto;
    justify-content: center;
    background-color: #110e1d;
    border-radius: 10px;
    padding: 20px;
    /* width: 100%; */
    max-width: 100%;
}

.container .content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 15px;
}



.info {
    border-radius: 10px;
    line-height: 1.4;
    letter-spacing: 0px;
    margin: 0px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A152C;
    padding: 8px 15px;
    gap: 5px;
}
.info #result {
    font-size: 22px;
    color: #736d9d;
    border-radius: 6px;
    line-height: 1.4;
    letter-spacing: 0px;
}

/* .info .success {
    display: none;
}

.info img {
    width: 50px;
    height: 50px;
} */

/* .container {
    max-width: 500px;
    margin: auto;
    z-index: 99999999999;
    padding: 10px;
    border-radius: 8px;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: red;
    position: fixed;
    height: 100;
}

.info  {
        padding: 0.3rem 0;
} */

.loading_shimmer {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999999;
    right: 0px;
    bottom: 0px;
    background: #0C0A14
}

.loading_shimmer .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    /* border-top: 2px solid #8b77ce; */
    animation: spinCenter 2s linear infinite;
    border-radius: 50%;
    /* makes it a circle */
    border: 3px solid rgba(0, 0, 0, 0);
    border-top: 2px solid #8b77ce;
}

/* size variants */
.loading_shimmer .loader.md {
    width: 110px;
    height: 110px;
    border-width: 8px;
}

.loading_shimmer .loader.sm {
    width: 55px;
    height: 55px;
    border-width: 5px;
}

.loading_shimmer .loader.xs {
    width: 30px;
    height: 30px;
    border-width: 3px;
}

.loading_shimmer figure {
    position: absolute;
    margin: 0;
    width: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading_shimmer.small {
    position: unset;
}

.loading_shimmer figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* maintain aspect ratio */
}

@keyframes spinCenter {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}