* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body {
    background: #f8fafc;
    color: #111;
    font-family: sans-serif;
}

a {
    text-decoration: none;

}

/* Navbar */

.navbar {
    position: fixed;
    display: flex;
    justify-content: space-between;
    top: 0;
    align-items: center;
    padding: 5px 50px;
    width: 100%;
    z-index: 1000;
    background: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.demo {
    background: #2E7D32;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
}

.login {
    border: none;
    background: none;
    margin-right: 10px;
    font-size: 16px;
    color: #333;
}

/* challenges section */

.problem-section {
    padding: 50px 30px;
    background: #c8fccb48;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.section-header p {
    color: #6b7280;
    max-width: 650px;
    margin: auto;
}

/* GRID */

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* CARDS */

.problem-cards {
    display: grid;
    gap: 20px;
}

.problem-card {
    display: flex;
    gap: 18px;
    background: white;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.problem-card h3 {
    margin: 0;
    font-size: 18px;
}

.problem-card p {
    margin-top: 5px;
    color: #6b7280;
    font-size: 14px;
}

/* ICONS */

.icon {
    font-size: 26px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.red {
    background: #fee2e2;
}

.green {
    background: #dcfce7;
}

.orange {
    background: #fed7aa;
}

.blue {
    background: #dbeafe;
}

/* IMAGE */
.problem-image {
    text-align: center;
}

.problem-image img {
    width: 100%;
}

/* RESPONSIVE */

@media(max-width:900px) {
    .problem-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .problem-image {
        order: -1;
    }

    .problem-card {
        text-align: left;
    }

}

/* solution */
.solution-section {
    padding: 50px 20px;
    background: #ffffff;
    font-family: Inter, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */

.solution-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.solution-content p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* HIGHLIGHTS */

.solution-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9fafb;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.highlight:hover {
    background: #ecfdf5;
    transform: translateY(-3px);
}

/* ICON */

.icon {
    font-size: 20px;
}

/* IMAGE */

.solution-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */

@media(max-width:900px) {

    .solution-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .solution-highlights {
        grid-template-columns: 1fr;
    }

}

/* features */

.features-section {
    padding: 50px 20px;
    background: #f9fafb;
    font-family: Inter, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.section-header p {
    color: #6b7280;
    max-width: 650px;
    margin: auto;
}

/* GRID */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: #2E7D32;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.feature-card:hover p {
    color: #ffffff;
}

/* RESPONSIVE */

@media(max-width:1000px) {

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px) {

    .features-grid {
        grid-template-columns: 1fr;
    }

}


/* stats */

.stats-section {
    padding: 80px 20px;
    background: #2E7D32;
    color: white;
    font-family: Inter, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.stats-header p {
    color: #ffffff;
    max-width: 650px;
    margin: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-card h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsive */

@media(max-width:900px) {

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:500px) {

    .stats-grid {
        grid-template-columns: 1fr;
    }

}

/* dashboard perview */
.dashboard-preview {
    padding: 50px 20px;
    background: #f9fafb;
    font-family: Inter, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.dashboard-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.dashboard-text {
    flex: 1;
}

.dashboard-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #111827;
}

.dashboard-text p {
    color: #6b7280;
    margin-bottom: 20px;
}

.dashboard-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.dashboard-features li {
    margin-bottom: 10px;
    color: #374151;
}

.btn-demo {
    display: inline-block;
    padding: 12px 24px;
    background: #1E7D32;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.btn-demo:hover {
    background: #2E7D32;
}

.dashboard-image {
    flex: 1;
}

.dashboard-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Hero */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    margin-top: 77px;
}

.hero-left {
    width: 50%;
}

.hero-left h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-right img {
    width: 500px;
}


/* Buttons */

.primary {
    background: #2E7D32;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    margin-right: 10px;
}

.secondary {
    border: 1px solid #2E7D32;
    padding: 14px 28px;
    background: white;
    border-radius: 8px;
    color: #2E7D32;
    font-weight: 600;


}

/* how it works */

.how-section {
    padding: 50px 20px;
    background: #ffffff;
    font-family: Inter, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.section-header p {
    color: #6b7280;
    max-width: 650px;
    margin: auto;
}

/* STEPS GRID */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.step-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 2px solid #2E7D32;
}

.step-card:hover {
    transform: translateY(-8px);
    background: #ecfdf5;
}

.step-number {
    width: 45px;
    height: 45px;
    background: #2E7D32;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    margin: auto;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #6b7280;
}

/* ARCHITECTURE */

.architecture {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
    flex-wrap: wrap;
}

.arch-item {
    background: #f1f5f9;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    font-size: 24px;
}

.arch-item p {
    font-size: 14px;
    margin-top: 5px;
    color: #374151;
}

.arrow {
    font-size: 26px;
    color: #2E7D32;
}

/* RESPONSIVE */

@media(max-width:1000px) {

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px) {

    .steps-grid {
        grid-template-columns: 1fr;
    }

}

/* cta */

.cta-section {
    background: linear-gradient(135deg, #2E7D32, #3cb371);
    padding: 50px 20px;
    text-align: center;
    color: white;
    font-family: Inter, sans-serif;
}

.cta-container {
    max-width: 900px;
    margin: auto;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #2E7D32;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e6f5ee;
}

.btn-secondary {
    border: 2px solid white;
    padding: 14px 28px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #2E7D32;
}


/* Testimonial */

.testimonial-section {
    padding: 50px 20px;
    background: #f9fafb;
    font-family: Inter, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.testimonial-header p {
    color: #6b7280;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 15px;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.6;
}

.farmer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.farmer-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.farmer-info h4 {
    margin: 0;
    font-size: 16px;
}

.farmer-info span {
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */

@media(max-width:900px) {

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

}


/* CTA */


/* Footer */

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 80px 20px 30px;
    font-family: Inter, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #2E7D32;
}

.social-icons {
    display: flex;
    gap: 12px;
    font-size: 20px;
}

.social-icons a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #2E7D32;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #334155;
    font-size: 14px;
}


/* comming soon page css */
.coming-soon {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #1f7a4d, #22c55e);
    position: relative;
    padding-top: 30px;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
}

.content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 48px;
    margin: 10px 0;
}

p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* COUNTDOWN */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.countdown div {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown span {
    font-size: 26px;
    font-weight: bold;
}

.countdown p {
    margin-bottom: 0;
}

/* FORM */
.subscribe {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.subscribe input {
    padding: 12px;
    border: none;
    border-radius: 6px;
    width: 250px;
}

.subscribe button {
    padding: 12px 20px;
    background: white;
    color: #2E7D32;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.subscribe button:hover {
    background: #e6f5ee;
}

/* technology section css */
.banner {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #1f7a4d, #22c55e);
    color: white;
    margin-top: 77px;
}

.banner h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* TECH STACK */
.tech {
    position: relative;
    padding: 20px 50px;
}

.tech h2 {
    text-align: center;

}

.gird {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: #8e8e8e1a;
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

.card i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #2E7D32;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.card h3 {
    margin-bottom: 10px;
}

/* ARCHITECTURE */
.architecture {
    text-align: center;
    padding: 60px 20px;
    background: #e3e3e3;
}

.flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* NODES */
.node {
    background: white;
    color: #1f7a4d;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
}

/* ARROWS */
.arrow {
    width: 50px;
    height: 2px;
    background: #22c55e;
    position: relative;
    animation: flow 1s infinite linear;
}

.arrow::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    border-left: 8px solid #22c55e;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ANIMATION */
@keyframes flow {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

/* pricing page css */
.toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding-top: 30px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked+.slider {
    background: #22c55e;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

/* PRICING */
.pricing {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 40px;
}

.pricing .card {
    background: #86868650;
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    width: 280px;
    transition: 0.3s;
    position: relative;
}

.card.popular {
    background: #ffffff50;
}

.card:hover {
    transform: translateY(-10px);
}

.popular {
    border: 2px solid #2E7D32;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2E7D32;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.price {
    font-size: 32px;
    margin: 15px 0;
}

.price span {
    font-size: 14px;
    opacity: 0.8;
}

ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

ul li {
    margin: 10px 0;
}

.pricing a {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: #2E7D32;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.pricing a:hover {
    background: #16a34a;
}

/* contact page css */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    gap: 30px;
    align-items: center;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.contact-form {
    flex: 1;
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.contact-form button {
    padding: 12px;
    background: #1f7a4d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* INFO CARDS */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
    background: #ededed;
}

.info-card {
    background: #2E7D32;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 300px;
    color: #ffff;
}

.info-card img {
    width: 24px;
    margin-bottom: 10px;
    filter: invert(1);
}

.info-card h3 {
    margin-bottom: 10px;
}

/* MAP */
.map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* .login page css */
.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background: url(../images/login.jpg) no-repeat center center/cover;
    height: 100vh;
}

/* CARD */
.login-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 16px;
    width: 400px;
    text-align: center;
    color: white;
    animation: fadeIn 0.6s ease;
    margin: 30px;
}

.login-card p {
    font-size: 24px;
}

/* INPUT */
.input-box {
    position: relative;
    margin: 20px 0;
    margin-bottom: 30px;
}


.input-box input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    outline: none;
}

.input-box label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #555;
    transition: 0.3s;
    pointer-events: none;
}

/* FLOAT LABEL */
.input-box input:focus+label,
.input-box input:valid+label {
    top: -18px;
    font-size: 12px;
    color: #ffffff;
}

/* BUTTON */
button {
    width: 100%;
    padding: 12px;
    background: #2E7D32;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #16a34a;
}

/* ERROR */
.error {
    color: #ff4d4d;
    font-size: 14px !important;
    min-height: 20px;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SHAKE */
.shake {
    animation: shake 0.3s;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

.signup-text {
    margin-top: 15px;
    font-size: 14px;
    color: #ddd;
}

.signup-text a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
}

.signup-text a:hover {
    text-decoration: underline;
}

/* popup css */
/* BUTTON */
.demo-btn {
    padding: 12px 22px;
    background: #22c55e;
    color: #000000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* BACKDROP */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* MODAL */
.modal-content {
    background: #ffffff;
    /* backdrop-filter: blur(15px); */
    padding: 30px;
    border-radius: 16px;
    width: 500px;
    color: #000000;
    text-align: center;
    animation: fadeIn 0.4s ease;
    position: relative;
}

/* CLOSE */
.close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* FORM */
.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.modal-content input {
    padding: 12px;
    border: 1px solid #000000;
    border-radius: 6px;
    outline: none;
}

.modal-content button {
    padding: 12px;
    background: #22c55e;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}

/* ERROR */
.error {
    color: #ff4d4d;
    font-size: 13px !important;
    min-height: 18px;
}

/* SUCCESS */
.success {
    color: #22c55e;
    font-weight: bold;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* SHAKE */
.shake {
    animation: shake 0.3s;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-6px);
    }

    50% {
        transform: translateX(6px);
    }

    75% {
        transform: translateX(-6px);
    }

    100% {
        transform: translateX(0);
    }
}


/* signup page css */