lo/* Basic Reset */
/* @import url('https://fonts.googleapis.com/css2?family=Stick&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Stick&family=Sulphur+Point:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Stick&family=Sulphur+Point:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rakkas&family=Stick&family=Sulphur+Point:wght@300;400;700&display=swap'); */


/* new code */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Quicksand:wght@300..700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h3{
    font-family: "Quicksand", sans-serif;

}
/* Navbar Styling */
.navbar {
    background-color: #8B008B;
    position: fixed;
    width: 100%;
    padding:7px;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-logo {
    display: flex;
    text-decoration: none;
    /* margin: 0 160px; */
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    font-family: "Stick", sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin-left: -1%;
    padding: 0;
    gap: 20px;
}

.nav-item {
    margin-left: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    transition: background 0.3s;
    font-family: "Quicksand", sans-serif;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.register-btn {
    background-color: #fff;
    color: #8B008B;
    padding: 23px 35px;
    border: 1px solid #fff;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
    font-size:14px;
    font-family: "Quicksand", sans-serif;
}

.register-btn:hover {
    background-color: #8B008B;
    color: #fff;
    border: 1px solid #fff;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
}





/* Responsive Adjustments */

/* For screens up to 1024px (Tablets and smaller desktops) */
@media (max-width: 1024px) {
    .nav-logo {
        margin: 0 50px;
        font-size: 28px;
    }

    .nav-menu {
        margin-left: -5%;
        gap: 20px;
    }

    .nav-link {
        font-size: 18px;
        padding: 5px 8px;
    }
}

/* For screens up to 768px (Tablets and larger phones) */
@media (max-width: 768px) {
    .nav-container {
        padding: 10px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #ff5f5f;
        padding: 10px;
        border-radius: 5px;
    }

    .nav-item {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
    }

}

/* For screens up to 600px (Mobile phones) */
@media (max-width: 600px) {
    .nav-logo {
        font-size: 24px;
        margin: 0 3px;
    }

    .nav-menu {
        margin-left: 0;
        gap: 10px;
    }

    .nav-link {
        font-size: 16px;
    }

}

/* For screens up to 420px */
@media (max-width: 420px) {
    .nav-logo {
        font-size: 20px;
        margin: 0 10px;
    }
    .register-btn{
        padding:13px 7px;
    }
    .nav-menu {
        gap: 8px;
    }

    .nav-link {
        font-size: 14px;
    }

    
}

/* For screens up to 420px */
@media (max-width: 425px) {
    .nav-logo {
        font-size: 20px;
        margin: 0 10px;
    }
    .register-btn{
        padding:13px 7px;
    }
    .nav-menu {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 14px;
    }

    

    
}

/* For screens up to 375px */
@media (max-width: 375px) {
    .nav-logo {
        font-size: 18px;
        margin: 0 5px;
    }
    .register-btn{
        padding:13px 7px;
    }
    .nav-menu {
        gap: 6px;
    }

    .nav-link {
        font-size: 12px;
    }
    
}

/* For screens up to 320px */
@media (max-width: 320px) {
    .nav-logo {
        font-size: 16px;
        margin: 0 5px;
    }

    .nav-menu {
        gap: 4px;
    }

    .nav-link {
        font-size: 10px;
    }

    
}
body {
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.3); 

   
}


/* Navbar Styling */
/* .navbar {
    background-color: #8B008B;
    position: fixed;
    width: 100%;
    padding:7px;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-logo {
    display: flex;
    text-decoration: none;
    margin: 0 10px;
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    font-family: "Stick", sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin-left: -7%;
    padding: 0;
    gap: 20px;
}

.nav-item {
    margin-left: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    padding: 5px 10px;
    transition: background 0.3s;
    font-family: "Sulphur Point", sans-serif;
    font-weight: bold;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.register-btn {
    background-color: #fff;
    color: #8B008B;
    padding: 23px 35px;
    border: 1px solid #f8e231;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.register-btn:hover {
    background-color: #8B008B;
    color: #fff;
    border: 1px solid #fff;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
} */





.marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    position: relative;
    height: 100%;
    margin-top: 120px;
}

.marquee-content, .marquee-content-reverse {
    display: flex;
    animation: scroll 15s linear infinite;
    margin-top: 0px;
    /* opacity: 0.7; */
}

.marquee-content img, .marquee-content-reverse img {
    width: 220px;
    height: auto;
    margin: 0;
    margin-left: 40px;
    border-radius: 10px;
}
.marquee-content-reverse{
    margin-top: 70px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.marquee-content-reverse {
    animation: scroll-reverse 15s linear infinite;
}
.container-holder{
   background-color: white; 
   width: 60%;
   display: flex;
   padding: 12px;
   border-radius: 10px;
   margin: 0 auto;
}
.login-container{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* height: 100%; */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: 90vh;
    /* background-color: rgba(0, 0, 0, 0.3);  */
 
}
.image img{
    border-radius: 10px;
    width: 100%;
    height: 100%;
}
.loginform{
    padding: 15px;
    width: 50%;
}
.image{
    width: 50%;
}
form h3{
    font-weight: 900;
}
.login-btn,
.register-btnn{
    width: 45%;
    padding: 7px 0px;
    border-radius: 30px;
}
.login-btn,
.login-btn-redirect{
    background: #8B008B;
    color: white;
    border: 1px solid #8B008B;
    font-family: "Quicksand", sans-serif;
}
.register-btnn{
    background-color: transparent;
    border: 1px solid silver;
    font-family: "Quicksand", sans-serif;
}
.user-password{
    width: 70%;
    margin: 0 auto;
    padding: 20px 0px;
}
.log-with-user{
    width: 100%;
    padding: 5px 0px;
    border-radius: 7px;
    border: 1px solid silver;
    background-color: transparent;
    color: gray;
    font-size:15px;
    font-family: "Quicksand", sans-serif;

}
.log-with-user svg {
    margin-right: 8px;
    width: 24px;
    height: 24px;
}
hr{
    margin: 20px 0px;
    color:#f3f3f3;
}
.username,
.password{
    border-radius: 7px;
    border: 1px solid silver;
    background-color: transparent;
    color: #000;
    width: 100%;
    font-size:12px;
    padding: 10px 10px;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    outline: none;
}

label{
    font-family: "Quicksand", sans-serif;

}
a{
    font-family: "Quicksand", sans-serif;

}

p{
    font-family: "Quicksand", sans-serif;

}
.password{
    margin-top: 5px;
}
.terms{
    display: flex;
}
/* .already-user{
    padding:20px 0px;
} */

.already-user {
    padding: 20px 0;
    font-size: 15px;
    font-weight: bold;
    background: linear-gradient(45deg, #6b3b6b, #903c90, #670467);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Merriweather", serif;
    position: relative;
}

.login-button-holder{
    width: 70%;
    margin: 0 auto;padding-top: 20px;
}
.terms-label,
.privacy-policy{
    font-size: 13px;
}
.login-btn-redirect{
    padding: 7px 0px;
    border-radius: 30px;
    width: 100%;
    margin-top: 5px;
    
}
.privacy-checkbox{
    margin-left: 30px;
}
.terms input{
    width: 12px;
}
@media(max-width:1000px){
    .container-holder{
        width: 70%;
    }
    .loginform{
        padding: 10px;
    }
    .image img {
        object-fit: cover;
    }
    .image{
        width: 60%;
    }
    .user-password{
        padding: 15px 0px;
        width: 80%;
    }
    .username,
.password{
    width: 100%;
}
.login-button-holder{
    width: 80%;
}
.terms{
    flex-direction: column;
    width: 100%;
}
.login-container{
    min-height: 115vh;
}
.privacy-checkbox{
    margin-left:0px;
}
}
@media(max-width:620px){
.container-holder{
    flex-direction: column;
}
.login-container{
    min-height: 160vh;
}
.image{
    width: 100%;
}
.loginform{
    padding:0px;
    width: 100%;
}
.user-password{
    padding: 15px 0px;
    width: 100%;
}
.username,
.password{
    width: 100%;
}
.login-btn,
.register-btnn{
    width: 48%;
  
}
}
@media(max-width:545px){
    .username,
.password{
    width: 100%;
}
}
@media(max-width:425px){
    .username,
.password{
    width: 94%;
}
.login-container{
    min-height: 120vh;
}
.already-user{
   text-align: center;
}
}
@media(max-width:375px){
    .username,
.password{
    width: 93%;
}
.login-container{
    min-height: 90vh;
}
}
@media(max-width:350px){
    .username,
.password{
    width: 93%;
}
.login-container{
    min-height: 120vh;
}
}



/* navbar responsive */



/* For screens up to 1024px (Tablets and smaller desktops) */
@media (max-width: 1024px) {
    .nav-logo {
        margin: 0 0px;
        font-size: 28px;
    }

    .nav-menu {
        margin-left: -5%;
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
        padding: 5px 8px;
    }
}

/* For screens up to 768px (Tablets and larger phones) */
@media (max-width: 768px) {
    .nav-container {
        padding: 10px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #ff5f5f;
        padding: 10px;
        border-radius: 5px;
    }

    .nav-item {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
    }

    
}

/* For screens up to 600px (Mobile phones) */
@media (max-width: 600px) {
    .nav-logo {
        font-size: 24px;
        margin: 0 3px;
    }

    .image{
        display:none;
    }

    .nav-menu {
        margin-left: 0;
        gap: 10px;
    }
    .container-holder{
        margin-top:-100px;
        width:85%;
    }
    .nav-link {
        font-size: 16px;
    }
}
@media (max-width: 425px) {
    .nav-logo {
        font-size: 20px;
        margin: 0 10px;
    }
    .register-btnn{
        padding:8px 7px;
    }
    .nav-menu {
        gap: 8px;
    }
    .nav-link {
        font-size: 14px;
    }
    .image{
        display: none;
    }
}


/* For screens up to 420px */
@media (max-width: 420px) {
    .nav-logo {
        font-size: 20px;
        margin: 0 10px;
    }
    .register-btnn{
        padding:7px 7px;
    }
    .nav-menu {
        gap: 8px;
    }

    .nav-link {
        font-size: 14px;
    }
}

/* For screens up to 375px */
@media (max-width: 375px) {
    .nav-logo {
        font-size: 18px;
        margin: 0 5px;
    }
    .register-btnn{
        padding:8px 7px;
    }
    .nav-menu {
        gap: 6px;
    }
    .container-holder{
        margin-top:100px;
    }
    .nav-link {
        font-size: 12px;
    }
 
}

/* For screens up to 320px */
@media (max-width: 320px) {
    .nav-logo {
        font-size: 16px;
        margin: 0 5px;
    }

    .nav-menu {
        gap: 4px;
    }
    .container-holder{
        margin-top:-100px;
    }
    .nav-link {
        font-size: 10px;
    }

 
}





