body {
    margin: 0;
    font-family:  "Segoe UI", sans-serif;
    background: #E8F6FF !important;
}

a{
    text-decoration: none;
    width: 100%;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: #26324c;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: #101626;
}

::-webkit-scrollbar-corner {
    background: #101626;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #26324c #101626;
}


/* Wrapper */
.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 20px;
    position: relative;
    overflow: hidden;
}

/* Background Circles */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bg-green {
    background: #10B981;
}

.bg-blue {
    background: #3B82F6;
}

.bg-yellow {
    background: #F59E0B;
}

.bg-violet {
    background: #8B5CF6;
}

.bg-red {
    background: #EF4444;
}

.bg-cyan {
    background: #06B6D4;
}

.bg-orange {
    background: #F97316;
}

/* Gradient Effects */
.bg-green.bg-circle {
    width: 600px;
    height: 600px;
    top: -25%;
    left: -15%;
    background: radial-gradient(circle, rgba(16,185,129,.08) 0%, transparent 65%);
}

.bg-purple {
    width: 500px;
    height: 500px;
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(139,92,246,.08) 0%, transparent 65%);
}

/* Tagline */
.tagline {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
}

/* Heading */
.main-heading {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    text-align: center;
    line-height: 1.07;
    margin-bottom: 14px;
}

.text-light {
    color: #E2A541;
}

.text-gradient {
    background: #001712;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.description {
    font-size: 14px;
    color: #305139;
    text-align: center;
    max-width: 460px;
    line-height: 1.75;
    margin-bottom: 48px;
}

/* Cards */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.card {
    max-width: 100%;
    background: rgba(188, 183, 183, 0.15);
    border: 1px solid rgba(121, 70, 70, 0.34);
    border-radius: 24px;
    padding: 28px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Header */
.card-header {
    margin-bottom: 10px;
}

.card-body {
    flex: 1; /* 👈 takes remaining space */
}

/* Footer */
.card-footer {
    margin-top: auto; /* 👈 pushes footer to bottom */
    padding-top: 15px;
}

/* Logo */
.logo {
    display: flex;
    gap: 7px;
    margin-bottom: 16px;
}

.logo span {
    color: #fff;
    padding: 5px;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    border-radius: 8.64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12.16px;
    color: #fff;
    flex-shrink: 0;
}

/* Card */
.card-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.green { color: #10B981; }
.violet { color: #8B5CF6; }

.card-title {
    font-size: 21px;
    font-weight: 800;
    color: #305139;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 12px;
    color: #305139;
    margin-bottom: 16px;
}

.card-meta {
    font-size: 11px;
    color: #305139;
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.text-center{
    text-align: center;
}

/* Buttons */
.btn {
    width: 100%;
    padding: 13px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    color: #fff;
}

.btn-green {
    background: linear-gradient(135deg,#059669,#10B981);
}

.btn-violet {
    background: linear-gradient(135deg,#7C3AED,#8B5CF6);
}

/* Footer */
.footer {
    margin-top: 44px;
    font-size: 11px;
    color: #ffffff;
}

/* Grid Layout */
.mind-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 16px;
}

/* Each Item */
.mind-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(167, 159, 53, 0.3);
}

/* Icon */
.mind-icon {
    width: 19px;
    height: 19px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
}

/* Text */
.mind-text {
    font-size: 11px;
    color: #305139;
}

/* Colors (reuse from your main CSS if already defined) */
.bg-green { background: #10B981; }
.bg-blue { background: #3B82F6; }
.bg-yellow { background: #F59E0B; }
.bg-violet { background: #8B5CF6; }
.bg-red { background: #EF4444; }
.bg-cyan { background: #06B6D4; }
.bg-orange { background: #F97316; }

/* Wrapper */
.auth-wrapper {
    min-height: 100vh;
    background: #E8F6FF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 20px;
    position: relative;
}

/* Glow */
.bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    top: 5%;
    left: 22%;
    pointer-events: none;
}

/* Back Button */
.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e1ecf4;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 9px;
    color: #000000;
    padding: 7px 14px;
    cursor: pointer;
    font-size: 12px;
}

/* Push bottom section down */
/* Bottom fixed at 30px */
.card-bottom {
    position: absolute;
    bottom: 30px; /* 👈 EXACT spacing */
    left: 20px;
    right: 20px;
}

/* Logo */
.logo-text {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    font-weight: bold;
}

.green { color: #10B981; }
.blue { color: #3B82F6; }
.yellow { color: #F59E0B; }
.violet { color: #8B5CF6; }
.red { color: #EF4444; }

/* Heading */
.auth-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 3px;
}

.auth-subtitle {
    font-size: 12px;
    margin-bottom: 24px;
}

/* Card */
.auth-card {
    width: 100%;
    max-width: 390px;
}

/* Tabs */
.tabs {
    display: flex;
    background: rgba(0,0,0,.3);
    border-radius: 9px;
    padding: 4px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 8px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 7px;
    border: none;
    cursor: pointer;
}

.motives-card .tab-btn.inactive {
    background: transparent;
    color: #64748B;
}

.motives-card .tab-btn.active {
    background: #3B82F6;
    color: #fff;
}

.minds-card .tab-btn.inactive {
    color: #64748B;
}

.minds-card .tab-btn.active {
    background: #10B981;
    color: #fff;
}

/* Form */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}

.label {
    display: block;
    font-size: 10px;
    color: #64748B;
    margin-bottom: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Input */
.inp {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #10b981;
    background: rgba(255,255,255,.02);
    color: #000;
    font-size: 13px;
}

/* Error */
.error-box {
    color: #FCA5A5;
    font-size: 12px;
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.2);
    padding: 8px 12px;
    border-radius: 8px;
}

/* Button */
.btn {
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 700;
}

.btn-primary {
    background: #3B82F6;
    color: #fff;
    padding: 12px;
    font-size: 14px;
}

.minds-card .btn-primary, .minds-card .btn-primary:hover {
    background: #10B981;
    color: #fff;
}

.motives-card .btn-primary {
    background: #8B5CF6;
    color: #fff;
}

/* Toggle */
.toggle-text {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: #64748B;
}

.link {
    color: #3B82F6;
    cursor: pointer;
    font-weight: 700;
}





