/* --- CIRONETSMART GLOBAL SAAS THEME --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --primary: #177acc;      /* Light Blue */
    --secondary: #062b55;    /* Dark Navy */
    
    /* Layout Variables */
    --bg-main: #f8fafc;
    --card-radius: 2.5rem;
    --input-bg: #f1f5f9;
    --text-dark: #0f172a;
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--bg-main);
    color: var(--text-dark);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Glass Card for Forms */
.glass-card {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 20px 25px -5px rgba(6, 43, 85, 0.08); 
    border: 1px solid #f1f5f9;
}

/* Form Inputs */
.crm-input {
    width: 100%;
    height: 3.5rem;
    padding: 0 1.25rem;
    background-color: var(--input-bg);
    border-radius: 1rem;
    border: 2px solid transparent;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.crm-input:focus {
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(23, 122, 204, 0.1);
}

/* Primary Action Button (The Professional Style) */
.btn-primary {
    width: 100%;
    height: 3.5rem;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 1.25rem;
    border: none;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(23, 122, 204, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(6, 43, 85, 0.2);
}

/* Secondary Back Button */
.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s;
}

.btn-action:hover {
    color: var(--primary);
}

/* Layout Groups */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .input-group { flex-direction: row; }
    .input-group > * { flex: 1; }
}

/* Active State for Mobile */
.active-click:active { transform: scale(0.96); }