@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* Page Transition Styles */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffd;
    z-index: 9999;
    perspective: 2000px;
    display: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    display: block;
    opacity: 1;
}

.page-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-container.flipping {
    transform: rotateY(-180deg);
}

.page-front, .page-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 10px 10px 0;
    box-shadow: 
        0 0 50px rgba(0,0,0,0.1),
        inset 0 0 20px rgba(255,255,255,0.1);
}

.page-front {
    background: url(logoPic-169.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: rotateY(0deg);
}

.page-back {
    transform: rotateY(180deg);
}

.page-content {
    text-align: center;
    color: #2d5a27;
    font-family: 'Playfair Display', serif;
}
.page-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.page-content p {
    font-size: 1.2rem;
    font-family: 'DM Sans', sans-serif;
    opacity: 0.8;
}

.page-number {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: bold;
    color: rgba(45, 90, 39, 0.3);
    font-family: 'Playfair Display', serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    scroll-behavior: smooth;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    background: url('settingSunFarm.jpg') center/cover fixed no-repeat;
    color: #333;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
body {
    position: relative;
    font-family: 'DM Sans', sans-serif;
    background: transparent;
}

/* Heading font styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.scroll-to-top{
    height: 60px;
    width: 60px;
    border-radius: 50%;
}
.scroll-to-top img{
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: #ffd;
    border-radius: 50%;
    opacity: 0.6;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-to-top img:hover{
    opacity: 1;
    transform: scale(1.1);
}
.section{
    min-height: 100vh;
    background: transparent;
}
a{
    text-decoration: none;
}

/* hero section styles */
#hero{
    position: relative;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    color: #ffd;
    text-align: center;
    height: 100vh;
}
.topContent{
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 30;
    gap: 15px;
    padding: 10px 0;
    overflow: visible;
}

#hero .frontImg{
    width: min(90vw, 280px);
    height: auto;
    max-height: 120px;
    object-fit: contain;
    background: none;
    z-index: 1000;
    margin: 0;
    padding: 0;
}
/* header styles */
.header {
    height: 60px;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 255, 221, 0.918), rgba(255, 255, 221, 0.8), #00000080, #000000);
    padding: 10px 20px;
    color: white;
    text-align: center;
    border-radius: 10px;
    z-index: 20;
}

.logo{
    margin-left: 0;
}
.logo img{
    width: 120px;
    height: 40px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
.mainNav{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header .navigation{
    display: flex;
    justify-content: center;
    padding: 10px;
}
.navigation li{
    list-style: none;
}
.loginBtn{
    background-color: #006400; /* your preferred color */
  color: #ffd;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.5s ease, box-shadow 0.3s ease, color 0.3s ease;
  animation: float 3s ease-in-out infinite;
}
.loginBtn:hover{
    color: #4CAF50;
    background: #ffd;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.navigation a{
    color: #ffd;
    text-decoration: none;
    padding: 4px 8px;
    cursor: pointer;
    transition: opacity 0.3s ease, text-decoration 0.3s ease, text-decoration-thickness 0.3s ease, color 0.3s ease;
}
.navigation a:hover{
    opacity: 0.8;
    color: #ffd;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}
.navigation a:active{
    font-weight: bold;
}
/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: #006400;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd;
    margin: 3px 0;
    transition: 0.3s;
}
/* Sidebar Menu */
.sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    transition: right 0.3s ease;
    z-index: 2000;
    padding-top: 20px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}
.sidebar.open {
    right: 0;
}
.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
}
.sidebar-nav li {
    margin: 4px 0;
}
.sidebar-nav a {
    color: #ffd;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.sidebar-nav a:hover {
    background: #006400;
}
.sidebar-nav a:active{
    transform: translateY(-4px);
}
.sidebar .loginBtn {
    position: absolute;
    bottom: 20px;
    left: 30px;
    background: #006400;
    color: #ffd;
    text-align: center;
}

/* sliding images  */
.imageContainer {
  position: absolute;
  width: 100%;
  height: 100vh;        /* full screen height */
  overflow: hidden;
  background: linear-gradient(to bottom, #00000000, #000);
}

.heroContent {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  left: 100%;           /* start off-screen to the right */
  animation: slideShow 20s infinite;
}
.heroContent img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroContent .heroText{
    position: absolute;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom, transparent, #000000);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.heroContent .heroText h1{
    font-size: clamp(3rem, 8vw, 7rem);
}

/* Each slide starts at a different time */
.heroContent.one { 
  animation-delay: 0;
  z-index: 0;

}
.heroContent.two { 
  animation-delay: 4s;
  z-index: 1;

}
.heroContent.three { 
  animation-delay: 8s;
  z-index: 2;

}
.heroContent.four { 
  animation-delay: 12s;
  z-index: 3;

}
.heroContent.five { 
  animation-delay: 16s;
  z-index: 4;

}

@keyframes slideShow {
  0%   { left: 100%; }       /* off-screen right */
  5%   { left: 0; }          /* slide in */
  25%  { left: 0; }          /* stay full screen (pause ~3s) */
  30%  { left: -100%; }      /* slide out left */
  100% { left: -100%; }      /* remain off-screen */
}

#hero h2{
    font-size: clamp(2.5em, 8vw, 3em);
    font-style: italic;
    padding-bottom: 50px;
    z-index: 10;
}

/* categories styles */
#categories{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);

}
#categories h2{
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: #ffd;
    text-decoration: underline;
}
.category-grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.category-card{
    min-height: 300px;
    background: #ffffff96;
    backdrop-filter: blur(30px);
    border: none;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.imageWrapper{
    width: 100%;
    height: 280px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}
.imageWrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-card h3{
    font-size: 1.5em;
    color: #006400;
    padding: 8px 0;
}
.category-card p{
    font-size: 1em;
    color: #333;
    padding: 0 10px 20px;
}
.categories-cta{
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 40px auto;
    background: none;
    border: none;
    color: #ffd;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bolder;
    border-radius: 10px;
    cursor: pointer;
    transition: text-decoration 0.3s ease;
}
.categories-cta:hover{
    text-decoration: underline;
}
.categories-cta img{
    background-color: #ffd;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    padding-left: 5px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.categories-cta:hover img{
    transform: translateX(5px);
}
/* story */
#stories{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(to bottom, transparent, #00000080);
}
.storiesContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 80%;
}
.storiesImg{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.storiesImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.storiesText{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}
.storiesText h2{
    font-size: 2em;
    color: #ffd;
    text-decoration: none;
    text-align: center;
    margin-bottom: 40px;
}
.storiesText p{
    font-size: 1.2em;
    color: #ffd;
}
.stories-cta{
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 20px 0;
    background: none;
    border: none;
    color: #ffd;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bolder;
    cursor: pointer;
    transition: text-decoration 0.3s ease;
}
.stories-cta:hover{
    text-decoration: underline;
}
.stories-cta img{
    background-color: #ffd;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    padding-left: 5px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.stories-cta:hover img{
    transform: translateX(5px);
}

/* featured products styles */
#featured{
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #00000080, #00000000);
}
#featured h2{
    font-size: 2em;
    color: #ffd;
    text-decoration: underline;
}
.featured-grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.featured-card{
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    background-color: #333;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}
.featured-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.featured-card .imageWrapper{
    position: absolute;
    height: 100%;
    z-index: 0;
    transition: opacity 0.3s ease;
}
.featured-card:hover .imageWrapper img{
    opacity: 0.7;
}
.featured-card h3{
    background: #00000079;
    z-index: 10;
    font-size: 1.25em;
    color: #ffd;
    padding:10px 0;
}
.featured-card p{
    text-align: left;
    font-size: 1em;
    color: #ffd;
    position: absolute;
    bottom: 0;
    background-color: #00000098;
    padding: 16px 8px;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.5s ease, opacity 0.5s ease;
}
.featured-card:hover p{
    visibility: visible;
    opacity: 1;
}
.featured-cta{
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 40px auto;
    background: none;
    border: none;
    color: #ffd;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bolder;
    border-radius: 10px;
    cursor: pointer;
    transition: text-decoration 0.3s ease;
}
.featured-cta:hover{
    text-decoration: underline;
}
.featured-cta img{
    background-color: #ffd;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    padding-left: 5px;
    margin-left: 10px;
    transition: transform 0.3s ease;
    
}
.featured-cta:hover img{
    transform: translateX(5px);
}

/* testimonials */
#testimonials{
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    background: linear-gradient(to bottom,transparent, #006400, rgba(255, 217, 0, 0.5));
}
#testimonials h2{
    font-size: clamp(1.8em, 8vw, 3em);
    color: #ffd;
    text-decoration: underline;
}
#testimonials h3{
    color: rgba(255, 255, 221, 0.822);
}
.testimonial-grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
}
.testimonial-card{
    border: none;
    position: relative;
    background: none;
    border: none;
    border-radius: 20px;
    min-height: 200px;
}
.testimonial-card img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.testimonies{
    position: absolute;
    width: 80%;
    height: 80%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.testimonial-card p{
    color: #ffd;
    padding: 10px;
    z-index: 100;
}
.testimonial-card h4{
    text-align: right;
    font-size: 1.1em;
    color: #ffd;
    padding: 4px 8px;
    margin-right: 20px;
    z-index: 100;
}

#about{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 0 20px;
    background: linear-gradient(to bottom, rgba(255, 217, 0, 0.5),transparent, #00000080);
}
#about h2{
    font-size: 2em;
    color: #ffd;
    text-decoration: none;
    text-align: center;
    margin-bottom: 20px;
}
#about p{
    font-size: 1.2em;
    color: #ffd;
    max-width: 800px;
}
.aboutContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    justify-content: center;
    align-items: center;
}
.aboutText{
    padding: 20px;

}
.aboutImage{
    background-color: #ffd;
    height: 80%;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.aboutImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.videoContainer{
    position: relative;
    padding-bottom: 30%;
    padding-right: 95%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: none;
    border: none;
} 
.videoContainer video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
#contact{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #00000080, #00000000);
}
#contact h2{
    font-size: 2em;
    color: #ffd;
    text-decoration: none;
    text-align: center;
    margin-bottom: 20px;
}
#contact p{
    font-size: 1.2em;
    color: #ffd;
    text-align: center;
}
.contactGrid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
    margin-top: 20px;
}
.contactInfo, .contactMap{
    min-height: 360px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 24px;
}
.contactInfo{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.contactInfo h3{
    text-align: center;
    color: #ffd;
    margin-bottom: 12px;
}
.contactInfo p{
    color: #ffd;
    margin: 8px 0;
}
.socialLinks{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}
.socialLinks a{
    display: inline-block;
    padding: 5px;
    border: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.socialLinks a:hover{
    background: none;
    transform: translateY(-4px);
}
.socialLinks img{
    width: 30px;
}
.contactMap{
    overflow: hidden;
    border-radius: 10px;
    padding: 0;
}
.contactMap iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}
@media (max-width: 900px) {
    .contactGrid{
        grid-template-columns: 1fr;
    }
}


/* footer */
footer{
    position: relative;
    background: linear-gradient(to bottom, #ffd, #00000000);
    color: #ffd;
    padding: 40px 20px;
}
.footer-content{
    max-width: 80%;
    margin: 0 auto;
}
.footer-logo{
    text-align: center;
    margin-bottom: 30px;
}
.footer-logo img{
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: cover;
}
.footer-bottom{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}
.footer-nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.footer-nav a{
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}
.footer-nav a:hover{
    text-decoration: underline;
}
.newsletter{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newsletter h4{
    margin: 0;
    font-size: 1.2em;
    color: #006400;
    text-align: center;
}
.newsletter form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newsletter input, .newsletter textarea{
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
}
.newsletter textarea{
    resize: vertical;
    min-height: 80px;
}
.newsletter button{
    padding: 8px 12px;
    background: #006400;
    color: #ffd;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease;
}
.newsletter button:hover{
    background: #4CAF50;
}
.footer-content blockquote{
    font-style: italic;
    color: #ffd;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    border-left: 5px solid #006400;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}
.footer-content blockquote cite{
    display: block;
    text-align: right;
    font-weight: bold;
    margin-top: 10px;
}
.copyright{
    text-align: center;
    margin-top: 20px;
    color: #ffd;
}


/* media queries */
@media (max-width: 900px) {
    .mainNav{
        display: none;
    }
    #stories .storiesContainer{
        display: flex;
        flex-direction: column-reverse;
    }
    .storiesText{
        padding: 0;
    }
    #testimonials{
        padding: 20px 0;
    }
    .testimonial-grid{
        padding: 0 10px;
    }
    .aboutContainer{
        display: flex;
        flex-direction: column;
    }
    .aboutText{
        padding: 0;
    }
    .videoContainer{
        padding-bottom: 100%;
        padding-right: 100%;
    }
    .footer-bottom{
        flex-direction: column;
        gap: 20px;
    }
    .footer-nav ul{
        flex-direction: column;
        gap: 10px;
    }
    .newsletter form{
        flex-direction: column;
    }
    .header .navigation {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .sidebar {
        display: block;
        right: -250px; /* Hidden by default on smaller screens */
    }
}

@media (max-width: 500px) {
    .videoContainer{
        padding-bottom: 100%;
        padding-right: 100%;
    }
}

/* LOGIN AND REGISTER FORMS */
.sign-Wrapper{
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}
.formPanel{
    height: fit-content;
  max-width:420px; 
  margin: 0 10px; 
  background: #006400; 
  backdrop-filter: blur(12px); 
  border:1px solid rgba(255,255,255,0.25); 
  border-radius:12px; 
  padding:0 24px;
  opacity: 0;
  position: fixed;
  top: 100px;
  right: 10px;
  transform: scale(0.2); 
   transition: opacity 1s ease, transform 1s ease, z-index 0s ease 1s; /* delay z-index change until after animation */
  pointer-events: none; /* prevent clicks when hidden */
}
.formPanel.active {
  opacity: 1;
  transform: scale(1); /* resurface to full size */
  pointer-events: auto;
  z-index: 100;
}
@media (max-width: 500px) {
  .formPanel {
    top: 30px;
    left: 0;
    right: 0;
  }
}
.formPanel .closeBtn{
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffd;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  padding: 3px;
}
.formPanel h1{
  margin-bottom:8px;
  color: #ffd;
}
.authWrapper form{
  display:flex; 
  flex-direction:column; 
  gap:12px;
}
.authWrapper p{
  color:#ffd;
  padding: 8px 0;
}
.authWrapper label{
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 5px 10px 10px 10px;
  box-shadow: 2px 3px 5px black;
  backdrop-filter: blur(30px);
  background: #0036008e;
  color: #ffd;
  border-left: 3px solid gold;
  transition: transform 0.3s ease;
}
.authWrapper label:hover{
  transform: scale(1.05);
}
.authWrapper input{
  padding:12px; 
  border-radius:8px; 
  border:1px solid rgba(255,255,255,0.3); 
  background: rgba(255,255,255,0.1); 
  color:#fff;
  outline: none;
}
.submitBtn{
    background-color: #ffd;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    color: #034203;
    margin-top: 10px;
    transform: scale(1.05);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.authWrapper .submitBtn:hover{
    background-color: gold;
}
.submitBtn:active{
  border: none;
  outline: none;
    transform: scale(1);
}

.authWrapper span{
  color: gold;
  text-decoration: none;
  transition: color 0.3s ease;
}
.authWrapper span:hover{
  color: skyblue;
}