/* Login Specific Styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 1rem;
}

.login-card {
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 28rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}


.login-container .input-field, .login-container .icon {
    transition: all 0.3s ease;
}
.login-container .input-field:focus {
    box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.2);
}
.login-container .login-btn {
    transition: all 0.3s ease;
    background: linear-gradient(to right, #2c7a7b, #38b2ac);
}
.login-container .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 123, 0.25);
}
.login-container .login-btn:active {
    transform: translateY(0);
}

/* Ensure form controls look good */
.form-control {
    padding: 0.75rem 1rem;
    padding-left: 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.2);
}

/* Fix for absolute positioned icons */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

/* Flex utilities */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

/* Margin utilities */
.mb-2 { margin-bottom: 0.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }
.mr-2 { margin-right: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-8 { margin-left: 2rem; }

/* Text utilities */
.text-center { text-align: center; }
.text-3xl { font-size: 1.875rem; }
.text-sm { font-size: 0.875rem; }
.font-bold { font-weight: 700; }
.text-gray-800 { color: #2d3748; }
.text-gray-600 { color: #718096; }
.text-gray-700 { color: #4a5568; }
.text-gray-500 { color: #a0aec0; }
.text-primary { color: var(--primary); }

/* Button fixes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #285e61;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Alert fixes */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.alert-danger {
    background-color: #fff5f5;
    border-left: 4px solid var(--danger);
    color: var(--danger);
}

/* Image container */
.rounded-full {
    border-radius: 9999px;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Width utilities */
.w-full { width: 100%; }
.w-40 { width: 10rem; }
.h-40 { height: 10rem; }

/* Object fit */
.object-contain {
    object-fit: contain;
}

.form-section {
    transition: all 0.3s ease;
}
.form-section:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.phone-input:focus {
    box-shadow: 0 0 0 2px rgba(44, 122, 123, 0.25);
}
[x-cloak] { display: none !important; }

.lead-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}
.detail-card {
    transition: all 0.3s ease;
}
.detail-card:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}