/* Login Page Styles */
.login-body {
    background: linear-gradient(135deg, rgba(93, 77, 255, 0.1) 0%, rgba(255, 107, 0, 0.1) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 900px;
}

.login-header {
    margin-bottom: 30px;
}

.login-logo {
    max-width: 200px;
    height: auto;
}

.login-content {
    overflow: hidden;
    border-radius: 20px;
}

.login-slider {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    position: relative;
}

.login-slider .carousel {
    height: 100%;
}

.login-slider .carousel-inner {
    height: 100%;
}

.login-slider .carousel-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-slider img {
    max-height: 200px;
    margin-bottom: 20px;
}

.login-slider .carousel-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0;
}

.login-slider .carousel-caption h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-slider .carousel-caption p {
    font-size: 16px;
    margin-bottom: 0;
}

.login-form-container {
    padding: 30px 20px;
}

.login-form-container h4 {
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.form-label {
    font-weight: 500;
    color: #555;
}

.input-group-text {
    background-color: transparent;
    border-right: none;
    color: var(--secondary-color);
}

.form-control {
    border-left: none;
}

.form-control:focus {
    border-color: #ddd;
}

.toggle-password {
    border-left: none;
    background-color: transparent;
    color: #777;
}

.toggle-password:hover {
    color: var(--secondary-color);
    background-color: transparent;
    border-color: #ddd;
}

.forgot-password {
    font-size: 14px;
    color: var(--primary-color);
}

.forgot-password:hover {
    color: var(--secondary-color);
}

.register-link {
    font-weight: 500;
    color: var(--secondary-color);
}

.register-link:hover {
    color: var(--primary-color);
}

.login-footer {
    margin-top: 30px;
    color: #777;
    font-size: 14px;
}

@media (max-width: 767px) {
    .login-slider {
        border-radius: 20px 20px 0 0;
        height: 200px;
    }
    
    .login-form-container {
        padding: 20px;
    }
}