
 body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1f2937;
}

.container {
    min-height: 100vh;
    display: flex;
    max-width: 100%;
    padding: 0;
}

/* Left Side - Hero Section */
.hero-section {
    display: none;
    width: 50%;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #059669, #047857, #065f46);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    color: white;
    height: 100%;
    width:100%;
}

.hero-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    margin: 0 auto;
    display: block;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    color: #FFF;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1fae5;
    text-align: center;
    max-width: 28rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    gap: 1.5rem;
    max-width: 20rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.dot-1 { background-color: #a7f3d0; }
.dot-2 { background-color: #6ee7b7; }
.dot-3 { background-color: #bbf7d0; }

.hero-feature-text {
    color: #d1fae5;
}

/* Right Side - Login Form */
.login-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: white;
}

.login-container {
    width: 100%;
    max-width: 28rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: #059669;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.login-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.login-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #6b7280;
}

.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
}

.login-main .card-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border: unset;
    background-color: unset !important;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.card-description {
    color: #6b7280;
    margin-top: 0.25rem;
}

.card-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.input-wrapper {
    position: relative;
}

.input {
    width: 100%;
    height: 2.75rem;
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.input:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
}

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

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
}

.checkbox {
    width: 1rem;
    height: 1rem;
    accent-color: #059669;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
}

.checkbox-label {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.forgot-link {
    font-size: 0.875rem;
    color: #059669;
    text-decoration: none;
}

.forgot-link:hover {
    color: #047857;
}

.login-button {
    width: 100%;
    height: 2.75rem;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-button:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: scale(1.02);
}

.login-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.support-text {
    margin-top: 1.5rem;
    text-align: center;
}

.support-text p {
    font-size: 0.875rem;
    color: #6b7280;
}

.support-link {
    color: #059669;
    text-decoration: none;
    font-weight: 500;
}

.support-link:hover {
    color: #047857;
}

.footer-text {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Responsive Design */
@media (min-width: 1024px) {
    .hero-section {
        display: flex;
    }

    .login-section {
        width: 50%;
    }
}

/* Toast styles (basic implementation) */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #059669;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.toast.show {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert.alert-danger {
    padding: 5px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 15px;
    font-size: small;
}
