body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.login-container {
    min-height: 100vh;
    display: flex;
}

.form-section {
    min-height: 100vh;
    padding: 60px 80px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-section h2 {
    color: #667eea;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-section p {
    color: #6c757d;
    margin-bottom: 30px;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    color: white;
    transition: transform 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.carousel-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel {
    min-height: 100vh;
    width: 100%;
}

.carousel-inner {
    min-height: 100vh;
}

.carousel-item {
    min-height: 100vh;
}

.carousel-inner img {
    border-radius: 0;
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0;
    padding: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
    width: 50%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

@media (max-width: 768px) {
    .carousel-section {
        display: none;
    }

    .form-section {
        padding: 40px 30px;
        max-height: 100vh;
    }

    .col-md-6.caroussel {
        display: none;
    }
}