*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.wrapper{
    min-height: 93vh;
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    /* background-color: #f0f2f5; */
}
.left-side{
    width: 50%;
    display: flex;
    justify-content: end;
}
.login-box{
    padding: 20px;
}
.right-side{
    padding-left: 90px;
}
.img{
    height: 106px;
}
.face-h1{
    color: #0866ff;
    font-size: 50px;
}
.face-p{
    font-size: 25px;
    font-weight: normal;
    line-height: 32px;
    width: 500px;
    padding-left: 30px;
    /* position: relative; */
    /* top: -30px; */
    color: #1c1e21;
}
.create-p{
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    color: #1c1e21;
    padding-right: 5px;
}
.form-b{
    display: flex;
    justify-content: center;
}

.right-s{
    width: 30%;
    min-width: 400px;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

form input {
    width: 100%;
    padding: 14px 16px;
    margin: 10px 0;
    border: 1px solid #dddfe2;
    border-radius: 5px;
    font-size: 16px;
}

.log {
    background-color: #0866ff;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    line-height: 48px;
    padding: 0 16px;
    margin-top: 12px;
    width: 100%;
    cursor: pointer;
}

form button:hover {
    background-color: #166fe5;
}

.create-btn {
    background-color: #42b72a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    padding: 10px 16px;
    text-align: center;
}

.create-btn-wrapper{
    width: 60%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.create-btn:hover {
    background-color: #36a420;
}

form a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    margin-top: 16px;
    color: #0866ff;
    font-weight: 500;
}

form hr {
    border: none;
    border-top: 1px solid #dddfe2;
    margin: 20px 0;
}


footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

footer ul li {
    margin: 0 10px;
}

footer ul li a {
    text-decoration: none;
    color: #777;
    font-size: 14px;
}

footer ul li a:hover {
    text-decoration: underline;
}




/* Fullscreen Carousel Background */

/* Carousel container for three sections */
.carousel-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Each section takes up 1/3 of the width */
.carousel-section {
    position: relative;
    width: 33.33%;
    height: 100%;
}

.carousel-images {
    position: absolute;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1; 
}


.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}


.wrapper {
    position: relative;
    z-index: 2; 
    min-height: 93vh;
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}


footer {
    position: relative;
    z-index: 2; 
}

/* Ensure content is properly aligned in mobile views */
@media (max-width: 992px) {
    .wrapper {
        flex-direction: column;
        padding: 20px;
        position: relative;
        top: 200px;
    }

    .left-side {
        position: absolute;
        top: 30px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .right-s {
        position: absolute;
        top: 200px;
    }

    .face-p {
        font-size: 18px;
        margin-top: 10px;
        color: #fff;
    }

    footer {
        margin-top: 300px;
    }
}




/* Overlay for darkening background */


/* Active slide */


/* Media Queries for Responsive Design */

/* For small devices (like smartphones) */
@media (max-width: 576px) {
    .carousel-background {
        height: 60vh; /* Reduce height for small screens */
    }
    
    .carousel-slide img {
        object-fit: cover; /* Ensure image still covers the space while maintaining aspect ratio */
    }
}

/* For medium devices (tablets or small desktops) */
@media (max-width: 768px) {
    .carousel-background {
        height: 70vh; /* Adjust height for medium-sized screens */
    }

    .carousel-slide img {
        object-fit: cover;
    }
}




@media (max-width: 992px) {
    .wrapper {
        flex-direction: column;
        padding: 20px;
        position: relative;
        top: 200px;
    }

     .left-side {
        position: absolute;
        top: 30px;
        width: 100%;
        justify-content: center;
        text-align: center;
        
    }
    .right-s{
        position: absolute;
        top: 200px;
    }
    .face-p{
        font-size: 18px;
        margin-top: 10px;
        color: #fff;
    }

    footer{
        margin-top: 300px;
    }

    
}

/* @media (max-width: 576){
    .right-s {
        width: 100%;
        padding: 20px 0;
    }
} */

