    body{
            overflow: hidden;
      }
.bg-section {
    height: 100vh;
    background-image: url(../img/bg-pettern2.jpg);
    background: linear-gradient(0deg, #ad0c00 0%, rgb(180 0 0) 100%);
}
.login-container .logo img{
    width: 200px;
    margin-top: 30px;
    margin-bottom: 35px;
}
.slick-arrow{
    display: none!important;
}
.slick-dots li button:before {
    font-size: 27px!important;
    color: #ffffff!important;
}
.img-slide .slide-img1{
    width: 600px;
    height: 370px;
}
.main-content .star-img{
    padding-top: 15%;
    padding-bottom: 20px;
}
.main-content .hand-img{
    margin-top: -10px;
}
.main-content .title-head{
    font-size: 50px;
    color: white;
    font-weight: 600;
    

}
.main-content p{
    font-size: 18px;
    color: white;
    width: 550px;
    line-height: 1.6;
    padding-top: 20px;

}
.main-content {
    width: 600px;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.img-section .img-slide {
    margin: auto;
    width: 600px;
    padding-top: 2%;
}
.main-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    /* margin-top: 50px; */
    /* height: 100%; */
}


.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-icon img {
   width: 140px;
    margin-bottom: 25px;
}

.login-header h2 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.2;
}

.login-header p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    background-color: #ffffff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    font-size: 16px;
}

.form-check-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 24px 0;
}

.form-check {
    display: flex;
    align-items: center;
    margin: 0;
}

.form-check-input {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    margin-top: 0;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.form-check-label {
    color: #374151;
    font-size: 14px;
    margin: 0;
    cursor: pointer;
}

.forgot-password {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 12px 24px;
    background-color: #1f2937;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.btn-login:hover {
    background-color: #111827;
    transform: translateY(-1px);
}

.btn-login:active {
    transform: translateY(0);
}

.signup-link {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.signup-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.signup-link a:hover {
    text-decoration: underline;
}

.demo-credentials {
    padding: 16px;
    background: #f3f4f6;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.demo-credentials small {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.4;
}

.demo-credentials strong {
    color: #374151;
}

/* Loading Animation */
.btn-login.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-login.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error States */
.btn-success {
    background-color: #10b981 !important;
}

.btn-danger {
    background-color: #ef4444 !important;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    border: none;
}

.alert-danger {
    background-color: #fef2f2;
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.alert-success {
    background-color: #f0fdf4;
    color: #16a34a;
    border-left: 4px solid #16a34a;
}

/* Responsive Design */
@media (max-width: 480px) {
    body {
        padding: 16px;
    }
    
    .login-card {
        padding: 32px 24px;
    }
    
    .login-header h2 {
        font-size: 20px;
    }
    
    .login-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* Animation for form elements */

/* Focus states */
.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    color: #3b82f6;
}

/* Custom scrollbar for demo credentials */
.demo-credentials::-webkit-scrollbar {
    width: 4px;
}

.demo-credentials::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.demo-credentials::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.demo-credentials::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
.logFooterWrap {
    width: 100%;
    position: fixed;
    bottom: 0px;
    padding: 18px 20px;
    background: #fff;
    border-top: 1px solid #ececec;
}
footer.logFootr {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
}
footer.logFootr p {
    margin-bottom: 0px;
}
footer.logFootr a {
    color: #0495fa;
}
.logincontainer{
    height:100%;
    position:relative;
}
.logincontainer .login-card {
   background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    border: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    margin: 0 auto;
    left: 50%;
}
@media (max-width: 768px) {
    .bg-section {
        display: none !important;
    }
    .login-container {
        padding: 50px 50px 50px 50px;
    }
    .login-container h2 {
        font-size: 20px;
    }
}