.glass-panel {
    background: rgba(20, 83, 45, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(167, 243, 208, 0.1);
}

.input-glass {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(20, 83, 45, 0.6);
    color: #f5f5f4;
    transition: all 0.3s ease;
}

.input-glass:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: #a7f3d0;
    outline: none;
    box-shadow: 0 0 15px rgba(167, 243, 208, 0.1);
}

.form-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a8a29e;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background-color: #a7f3d0;
    color: #052e16;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(167, 243, 208, 0.2);
    display: flex;
    align-items: center;
}

.btn-primary:hover {
    background-color: white;
    transform: scale(1.02);
}

.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(100px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: #16a34a;
    opacity: 0.2;
    animation: pulse 8s infinite;
}

.orb-2 {
    width: 384px;
    height: 384px;
    left: 33%;
    background: #10b981;
    opacity: 0.1;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.back-link {
    position: absolute;
    top: 30px;
    left: 35px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 12px;

    font-size: 0.9rem;
    font-weight: 500;

    color: #cbd5d1;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(6px);

    transition: all 0.25s ease;

    z-index: 50;
}

.back-link:hover {
    color: #a7f3d0;
    background: rgba(167, 243, 208, 0.08);
    transform: translateX(-3px);
}

.back-link .arrow {
    font-size: 1rem;
    opacity: 0.8;
}

.logo-img {
    height: 110px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
}

.tab-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn.active {
    background-color: #a7f3d0;
    color: #052e16;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tab-btn.inactive {
    color: #a8a29e;
}

.tab-btn.inactive:hover {
    color: white;
}
