* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container-fluid {
    padding: 0;
}

.split-layout {
    display: flex;
    min-height: 100vh;
}

/* Left Side - Image Section */

.image-overlay {
    text-align: center;
    max-width: 600px;
    z-index: 2;
}

.image-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.image-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.features-list {
    text-align: left;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-item i {
    color: #6a11cb;
    background: white;
    border-radius: 50%;
    padding: 10px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Side - Login Form */
.form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f8f9fa;
}

.login-container {
    width: 100%;
    max-width: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo p {
    color: #666;
    font-size: 0.9rem;
}

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

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 5px;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
    color: #6a11cb;
}

.form-control {
    border-left: none;
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.1);
}

.password-toggle {
    background: #f8f9fa;
    border-left: none;
    cursor: pointer;
    color: #666;
}

.password-toggle:hover {
    color: #6a11cb;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.form-check-label {
    color: #555;
    font-size: 0.9rem;
}

.form-check-input:checked {
    background-color: #6a11cb;
    border-color: #6a11cb;
}

.forgot-password {
    color: #6a11cb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
    color: #2575fc;
}

.login-btn {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    padding: 12px;
    width: 100%;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #777;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    transition: all 0.3s;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.facebook-btn {
    background: #3b5998;
}

.twitter-btn {
    background: #1da1f2;
}

.google-btn {
    background: #db4437;
}

.signup-link {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.signup-link a {
    color: #6a11cb;
    text-decoration: none;
    font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
    }

    .image-section {
        min-height: 300px;
        padding: 30px;
    }

    .image-overlay h1 {
        font-size: 2.2rem;
    }

    .image-overlay p {
        font-size: 1rem;
    }

    .form-section {
        padding: 30px;
    }

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

@media (max-width: 576px) {
    .image-section {
        display:none
    }

    .image-overlay h1 {
        font-size: 1.8rem;
    }

    .feature-item {
        font-size: 1rem;
    }

    .form-section {
        padding: 20px;
    }

    .login-container {
        padding: 25px;
        box-shadow: none;
    }

    .options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}