html, body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    height: 100vh;
}

.loginPage {
    position: relative;
   background: url('https://app.ifnfamily.com/assets/images/login-pattern.svg') bottom left no-repeat; 
            background-color: #fff; 
            background-size: 340px;  position:relative;
            border-radius: 0;
    overflow: hidden;
}

@media (max-width: 575.98px) {
  .loginPage {
   background:#ffffff;
  }
}

.loginPage::before {
    content: "";
    display:none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 100;
}

.loginPage .logincontent {
    position: relative;
    z-index: 101;
    
}
.loginform {
    border-radius: 12px;
    padding: 2rem;
    color: white;
}

.loginform .input-group {
    margin-bottom: 1rem;
}

.founderBar {
        height: 50px;
    margin-top: 200x;;
    background-color: #64c4c0;
    text-align: center;
}

.founderBar h1 {
    position: relative;
    font-size: 20px;
}
.founderBar h1 span {
    color: #ffffff;
    z-index: 100;
    position: relative;
    width: 200px;
    font-size: 1.8rem;
    text-align: left !important;
    font-weight: bold;
    top: -30px;
    left: -20px; /* Fixed typo: 'left: -20pxx;' */
    word-wrap: break-word; /* Added value for word-wrap */
}

.founderBar h1::after {
    content: "";
    height: 100px;
    width: 400px;
    transform: translateX(-50%); /* Fixed incorrect transform syntax */
    background: url('../images/header.svg') no-repeat center center;
    position: absolute;
    top: -40px;
    left: 50%;
    z-index: 5;
}

.founderlogos {
    background:#ffffff;
    padding: 10px;
}
.founderlogos .card {
    border-radius: 0;;
    border:3px solid #198281;
    margin:5px;
}
.founderlogos .card .card-body{
    
    height: 150px;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.founderlogos .card .card-body img {
    max-height: 70px;
    width: auto ;
    margin: 0 auto;
}
/* Slick Slider Custom Styling */
.slick-prev, .slick-next {
    font-size: 24px;
    color: #198281;
    z-index: 102;
}

.slick-prev:hover, .slick-next:hover {
    color: #64c4c0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .founderBar h1 {
        font-size: 1.5rem;
    }

    .loginform {
        padding: 1.5rem;
    }

    .founderlogos .card .card-body {
        min-height: 100px;
    }
}

@media (max-width: 576px) {
    .loginform {
        padding: 1rem;
    }

    .input-group-text {
        padding: 0.5rem;
    }

    button.btn {
        padding: 0.5rem;
    }

    .founderlogos .card .card-body {
        min-height: 80px;
    }
}

.form-control {
    height:40px !important;
    border-radius:0;
}
.slick-slide {
    float: left; /* Fix for Safari rendering */
    height: auto; /* Ensure dynamic height */
    min-height: 1px; /* Forces Safari to calculate height */
}

.slick-track {
    transform: translate3d(0, 0, 0); /* Hardware acceleration */
    will-change: transform; /* Optimize animations */
}

.slick-cloned {
    display: block !important; /* Ensure cloned slides are visible */
}