﻿
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --saffron: #E8651A;
    --deep-saffron: #C04A00;
    --gold: #F5B800;
    --cream: #FDF6EC;
    --earthy: #7B4F2E;
    --forest: #2D6A4F;
    --night: #1A1008;
    --text: #3D2B1A;
    --muted: #8B6F5A;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253,246,236,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232,101,26,0.15);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.logo-text {
    line-height: 1.1;
}

    .logo-text .hi {
        font-family: 'Yatra One', cursive;
        font-size: 17px;
        color: var(--saffron);
    }

    .logo-text .en {
        font-size: 11px;
        color: var(--muted);
        letter-spacing: .5px;
    }

/*nav {
    display: flex;
    gap: 2px;
    align-items: center;
}*/

    nav a {
        padding: 8px 14px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
        text-decoration: none;
        border-radius: 6px;
        transition: background .2s, color .2s;
    }

        nav a:hover {
            background: rgba(232,101,26,.1);
            color: var(--saffron);
        }

.btn-donate {
    margin-left: 8px;
    background: var(--saffron);
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: 20px !important;
    transition: background .2s !important;
}

    .btn-donate:hover {
        background: var(--deep-saffron) !important;
    }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    padding-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 80% at 60% 50%, rgba(245,184,0,.08) 0%, transparent 70%);
        pointer-events: none;
    }

.mandala-bg {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 680px;
    height: 680px;
    opacity: .04;
    animation: spin 60s linear infinite;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-left {
    padding: 80px 5% 80px 8%;
    position: relative;
    z-index: 2;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,101,26,.1);
    border: 1px solid rgba(232,101,26,.25);
    color: var(--saffron);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp .6s ease both;
}

.hero-title {
    font-family: 'Yatra One', cursive;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 1.1;
    color: var(--night);
    margin-bottom: 20px;
    animation: fadeUp .7s .1s ease both;
}

    .hero-title span {
        color: var(--saffron);
    }

.hero-sub {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeUp .7s .2s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .7s .3s ease both;
}

.btn-primary {
    background: var(--saffron);
    color: var(--white);
    border: none;
    cursor: pointer;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 25px rgba(232,101,26,.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(232,101,26,.4);
    }

.btn-outline {
    background: transparent;
    color: var(--saffron);
    border: 2px solid var(--saffron);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
}

    .btn-outline:hover {
        background: var(--saffron);
        color: var(--white);
    }

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    animation: fadeUp .7s .4s ease both;
}

.stat {
    text-align: left;
}

.stat-num {
    font-family: 'Yatra One', cursive;
    font-size: 2rem;
    color: var(--saffron);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.hero-right {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 8px;
    height: 100%;
    padding: 78px 40px 40px 0;
}

.hero-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

    .hero-card:first-child {
        grid-row: span 2;
    }

.hero-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
}

.hc1 {
    background: linear-gradient(135deg, #E8651A22, #F5B80033);
}

.hc2 {
    background: linear-gradient(135deg, #2D6A4F22, #2D6A4F11);
}

.hc3 {
    background: linear-gradient(135deg, #7B4F2E22, #E8651A11);
}

.hc4 {
    background: linear-gradient(135deg, #F5B80033, #E8651A22);
}

.hc5 {
    background: linear-gradient(135deg, #2D6A4F11, #7B4F2E22);
}

.card-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    background: rgba(253,246,236,.85);
    padding: 4px 10px;
    border-radius: 10px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── TICKER ─── */
.ticker {
    background: var(--saffron);
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-block;
    animation: ticker 28s linear infinite;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
}

    .ticker-inner span {
        margin: 0 40px;
    }

        .ticker-inner span::before {
            content: '🔶  ';
        }

@keyframes ticker {
    from {
        transform: translateX(100vw);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ─── SECTION WRAPPER ─── */
section {
    padding: 90px 8%;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Yatra One', cursive;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--night);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
    max-width: 600px;
}

/* ─── MISSION ─── */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.mission-visual {
    position: relative;
}

.mission-blob {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #E8651A15, #F5B80020, #2D6A4F10);
    border-radius: 40% 60% 55% 45% / 45% 55% 65% 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 55% 45% / 45% 55% 65% 35%;
    }

    50% {
        border-radius: 55% 45% 40% 60% / 60% 40% 55% 45%;
    }
}

.mission-float {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.mf1 {
    top: 10%;
    right: -20px;
}

.mf2 {
    bottom: 10%;
    left: -20px;
}

.mission-float .icon {
    font-size: 24px;
    display: block;
    margin-bottom: 4px;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mpoint {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(232,101,26,.12);
    transition: border-color .2s, box-shadow .2s;
    cursor: default;
}

    .mpoint:hover {
        border-color: var(--saffron);
        box-shadow: 0 6px 20px rgba(232,101,26,.1);
    }

.mpoint-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.mpoint h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mpoint p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── SERVICES ─── */
.services-bg {
    background: var(--night);
}

    .services-bg .section-title {
        color: var(--cream);
    }

    .services-bg .section-desc {
        color: rgba(253,246,236,.6);
    }

    .services-bg .section-label {
        color: var(--gold);
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.s-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 32px 28px;
    transition: background .25s, transform .25s;
    cursor: default;
}

    .s-card:hover {
        background: rgba(232,101,26,.12);
        transform: translateY(-4px);
    }

.s-icon {
    font-size: 36px;
    margin-bottom: 18px;
}

.s-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
}

.s-card p {
    font-size: 13px;
    color: rgba(253,246,236,.55);
    line-height: 1.7;
}

.s-tag {
    margin-top: 20px;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ─── TEAM ─── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.t-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}

    .t-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 36px rgba(0,0,0,.12);
    }

.t-avatar {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.ta1 {
    background: linear-gradient(135deg, #E8651A25, #F5B80030);
}

.ta2 {
    background: linear-gradient(135deg, #2D6A4F20, #2D6A4F10);
}

.ta3 {
    background: linear-gradient(135deg, #7B4F2E20, #E8651A15);
}

.ta4 {
    background: linear-gradient(135deg, #F5B80025, #E8651A20);
}

.t-info {
    padding: 18px 16px 22px;
}

    .t-info h4 {
        font-size: 15px;
        font-weight: 600;
    }

    .t-info p {
        font-size: 12px;
        color: var(--muted);
        margin-top: 4px;
    }

/* ─── ACHIEVEMENTS ─── */
.ach-bg {
    background: linear-gradient(135deg, #FFF9EF 0%, #FDF6EC 100%);
}

.ach-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-top: 50px;
}

.ach-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 3px 16px rgba(0,0,0,.05);
    border-top: 4px solid var(--saffron);
}

.ach-num {
    font-family: 'Yatra One', cursive;
    font-size: 2.8rem;
    color: var(--saffron);
    line-height: 1;
}

.ach-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.5;
}

/* ─── DONATION CTA ─── */
.donation-cta {
    background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
    padding: 80px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-family: 'Yatra One', cursive;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--white);
    margin-bottom: 10px;
}

.cta-text p {
    color: rgba(255,255,255,.8);
    font-size: 15px;
    max-width: 500px;
    line-height: 1.7;
}

.btn-cta {
    background: var(--white);
    color: var(--saffron);
    padding: 16px 38px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
}

    .btn-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(0,0,0,.25);
    }

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.c-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.c-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.c-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(232,101,26,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.c-item h4 {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 3px;
    font-weight: 500;
}

.c-item p {
    font-size: 15px;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .contact-form input,
    .contact-form textarea {
        padding: 14px 18px;
        border: 1.5px solid rgba(232,101,26,.2);
        border-radius: 12px;
        background: var(--white);
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        color: var(--text);
        outline: none;
        transition: border-color .2s;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--saffron);
        }

    .contact-form textarea {
        resize: vertical;
        min-height: 120px;
    }

/* ─── FOOTER ─── */
footer {
    background: var(--night);
    color: rgba(253,246,236,.7);
    padding: 60px 8% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo-icon {
    background: var(--saffron);
}

.footer-brand .hi {
    color: var(--gold) !important;
}

.footer-brand .en {
    color: rgba(253,246,236,.5) !important;
}

.footer-desc {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 13px;
    margin-top: 16px;
    line-height: 1.8;
    color: rgba(253,246,236,.55);
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(253,246,236,.6);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s;
}

    .footer-col a:hover {
        color: var(--saffron);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(253,246,236,.35);
    flex-wrap: wrap;
    gap: 12px;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--saffron);
    border-radius: 3px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .mission-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid, .team-grid, .ach-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav {
        display: none;
    }
}

@media (max-width: 560px) {
    section {
        padding: 60px 5%;
    }

    .services-grid, .team-grid, .ach-grid {
        grid-template-columns: 1fr;
    }
}
/* INFO CARDS */

.info-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    padding: 40px 8%;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

/* responsive */

@media(max-width:900px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}
.gallery-grid, .team-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

@media (max-width: 600px) {
    .gallery-grid, .team-grid, .services-grid {
        grid-template-columns: 1fr;
    }
}
nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-donate {
        width: 100%;
        text-align: center;
    }
}
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px; /* match header height */
        left: 0;
        right: 0;
        z-index: 200;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        padding: 1rem 5%;
    }

        nav.open {
            display: flex;
        }
}
.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    background: white;
    padding: 25px;
    box-shadow: 0 0 10px #ccc;
    margin-top: 105px;
}

h2 {
    color: #20b2aa;
    margin-top: 25px;
}

label {
    font-weight: bold;
    font-size: 14px;
}

.row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.col {
    flex: 1;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.category {
    background: #555;
    padding: 10px;
    color: white;
    margin-bottom: 20px;
}

    .category label {
        margin-right: 20px;
    }

.photo-box {
    width: 150px;
    height: 150px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

    table th, table td {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: center;
    }

    table th {
        background: #666;
        color: white;
    }

button {
    background: #20b2aa;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

    button:hover {
        background: #199d96;
    }

@media(max - width:768px) {
    .row {
        flex-direction: column;
    }
}
.profile-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
}

.btn-login {
    background: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #ddd;
}

.profile-dropdown {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-icon {
    font-size: 18px;
}

.profile-name {
    font-weight: 500;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    background: white;
    min-width: 150px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    border-radius: 6px;
    overflow: hidden;
}

    .dropdown-content a {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: #333;
    }

        .dropdown-content a:hover {
            background: #f5f5f5;
        }

.profile-dropdown:hover .dropdown-content {
    display: block;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#fff7f0,#ffe8d6);
}



.login-card {
    width: 380px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}



.login-header {
    text-align: center;
    margin-bottom: 25px;
}



    .login-header h2 {
        font-family: 'Yatra One';
        color: #e66a1f;
    }



.lamp {
    font-size: 26px;
    margin-bottom: 8px;
}



.form-group {
    margin-bottom: 18px;
}



.form-control {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}



.password-box {
    position: relative;
}



.show-pass {
    position: absolute;
    right: 10px;
    top: 36px;
    cursor: pointer;
}



.btn-login-main {
    width: 100%;
    height: 44px;
    background: #e66a1f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}



    .btn-login-main:hover {
        background: #cf5c16;
    }



.error-msg {
    background: #ffe5e5;
    color: #c62828;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}



.register-link {
    text-align: center;
    margin-top: 15px;
}



.text-danger {
    color: red;
    font-size: 13px;
}
.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}


.btn-login-header {
    background: #f4b942;
    color: #000;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .2s;
}


    .btn-login-header:hover {
        background: #e9a826;
    }


.login-icon {
    font-size: 16px;
}

