body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #f0fdf4 0%, #fefce8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
}

@media (min-width: 992px) {
    .login-wrapper {
        flex-direction: row;
    }
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border: 2px solid rgba(0, 154, 68, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 25px -5px rgba(0, 154, 68, 0.1), 0 10px 10px -5px rgba(0, 154, 68, 0.04);
    box-sizing: border-box;
}

.side-card {
    width: 100%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 154, 68, 0.05);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    max-height: 480px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    background: #009a44;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff100;
    margin-bottom: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 154, 68, 0.3);
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 4px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.mt-4 { margin-top: 24px; }
.pt-4 { padding-top: 24px; }
.fw-bold { font-weight: 700; }
.fw-medium { font-weight: 500; }
.small { font-size: 0.875rem; }
.text-muted { color: #64748b; }
.text-dark { color: #1e293b; }
.text-primary { color: #009a44; }
.text-decoration-none { text-decoration: none; }
.border-top { border-top: 1px solid #e2e8f0; }
.w-100 { width: 100%; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.gap-2 { gap: 8px; }

.form-label {
    display: block;
    color: #475569;
    letter-spacing: 0.025em;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 700;
}

.form-control {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #1e293b;
    padding: 12px 16px;
    transition: all 0.2s;
    box-sizing: border-box;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    background: #ffffff;
    border-color: #009a44;
    color: #1e293b;
    box-shadow: 0 0 0 4px rgba(0, 154, 68, 0.1);
}

.btn-primary {
    display: block;
    width: 100%;
    background: #009a44;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary:hover {
    background: #007a36;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 154, 68, 0.3);
}

.alert-custom {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #dc2626;
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.public-link-item {
    transition: all 0.2s;
    border-radius: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1e293b;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.public-link-item:hover {
    background: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.link-icon-bg {
    background: #ffffff;
    padding: 4px;
    border-radius: 8px;
    display: flex;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.overflow-y-auto { overflow-y: auto; }
.flex-1 { flex: 1; }
.pe-2 { padding-right: 8px; }

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

