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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d;
    display: flex;
    min-height: 100vh;
}

.left-panel {
    width: 40%;
    background: linear-gradient(to bottom right, #0d0d0d, #1a1a1a);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    position: relative;
    color: #fff;
}

.logo {
    font-size: 32px;
    color: #00ffee;
    text-shadow: 0 0 10px #00ffee, 0 0 20px #00ffee;
    margin-bottom: 40px;
}

.card {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 255, 238, 0.1);
}

.card form {
    display: flex;
    flex-direction: column;
}

.input-container {
    position: relative;
    margin-bottom: 15px;
}

.input-container input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #444;
    background: #000;
    color: #fff;
    border-radius: 6px;
}

.input-container img {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.card button {
    padding: 12px;
    background: #00ffee;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    background: #00ffeecc;
}

.flash-message {
    background-color: #1a1a1a;
    border-left: 4px solid red;
    padding: 10px;
    margin-bottom: 15px;
    color: red;
    border-radius: 6px;
}

.help-links {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

.help-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #ccc;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.social-button:hover {
    background: #00ffee33;
    border-color: #00ffee;
    color: #00ffee;
}

.donate-subscribe-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.support-button {
    display: inline-block;
    width: 160px;
    height: 45px;
    font-weight: bold;
    text-align: center;
    line-height: 45px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.support-button.donate {
    background-color: #FFDD00;
    color: #000;
}

.support-button.subscribe {
    background-color: #FF0000;
    color: #fff;
}

.right-panel {
    width: 60%;
    background: #000;
    position: relative;
    overflow: hidden;
}

.dynamic-image {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: opacity 0.8s ease-in-out;
}

.right-panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;
    background: repeating-radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 3px);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transform: translateX(0);
}

.right-panel.animate::after {
    animation: sandstorm-left 2s ease-in-out;
    opacity: 1;
}

@keyframes sandstorm-left {
    0% {
        transform: translateX(0);
        opacity: 0.3;
    }

    100% {
        transform: translateX(-150px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        width: 100%;
        height: auto;
    }

    .donate-subscribe-row {
        flex-direction: column;
    }
}

/* Help icon */
.help-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: auto;
}

.help-icon img {
    width: 60px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 4px #00ffff88);
}

.help-icon:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px #00ffffcc);
}



html,
body {
    overflow: hidden;
}