/*==================================================
 SEVA Hospital Information System
 variables.css
==================================================*/

:root{

    /* Brand */

    --primary:#1ebfc1;
    --primary-dark:#169ea0;
    --primary-light:#dff9fa;

    /* Colors */

    --white:#ffffff;
    --black:#000000;

    --text:#2d3436;
    --text-light:#636e72;

    --border:#e4e7ec;

    --background:#f5fbfc;

    --danger:#dc3545;
    --success:#198754;
    --warning:#ffc107;

    /* Shadow */

    --shadow-sm:0 4px 15px rgba(0,0,0,.08);

    --shadow-md:0 10px 30px rgba(0,0,0,.12);

    --shadow-lg:0 20px 60px rgba(0,0,0,.18);

    /* Radius */

    --radius-sm:8px;
    --radius-md:14px;
    --radius-lg:22px;

    /* Animation */

    --transition:.35s ease;

    /* Font */

    --font:'Poppins',sans-serif;

}