/* General Styling */
body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url('../images/home_slider_3.jpg') no-repeat center center/cover;
    font-family: 'Poppins', sans-serif;
}

/* Glassmorphism Form Box */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.form-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 350px; /* Ensures a compact width */
    color: white;
    position: relative;
}

/* Toggle Buttons */
.button-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.toggle-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: white;
    cursor: pointer;
    padding: 10px 20px;
    transition: 0.3s;
}

.toggle-btn.active {
    border-bottom: 2px solid #ff7eb3;
    font-weight: bold;
}

/* Form Fields */
.input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.input-field {
    position: relative;
    width: 100%;
    max-width: 300px; /* Ensures fields stay inside the form */
    margin-bottom: 15px;
}

.input-field i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
}

input {
    width: 100%;
    max-width: 100%; /* Ensures input does not exceed parent */
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Toggle Password Visibility */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    
}

/* Submit Button */
.submit-btn {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: #ff7eb3;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #ff477e;
}

/* Hide Forms */
.hidden {
    display: none;
}

/* Bottom Links */
.bottom-links {
    margin-top: 10px;
    font-size: 14px;
}

.bottom-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.bottom-links a:hover {
    opacity: 1;
}

/*----------------------------------Login Page not working Marquee Satrt--------------------------------*/

.marquee-container{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    top: 35px;
    transform: translateY(-100%) translateX(-5%);

}


.marquee-text {
    display: inline-block;
    font-size: 24px;
    font-weight: normal;
    color: rgb(255, 254, 254);
    position: relative;
    animation: scroll-right 40s linear infinite;

}

@keyframes scroll-right {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/*----------------------------------Login Page Not Working End--------------------------------*/
