/*
=============================
BOTÕES
=============================
*/

.btn{

    display:inline-block;

    padding:14px 28px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    text-decoration:none;

    transition:.3s;

}

.btn-primary{

    background:#2563EB;

    color:white;

}

.btn-primary:hover{

    background:#1E3A8A;

}

/*
=============================
CARDS
=============================
*/

.card{

    background:white;

    border-radius:14px;

    box-shadow:var(--sombra);

    padding:30px;

}

/*
=============================
INPUT
=============================
*/

.input{

    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

}

/*
===================================
BOTÕES
===================================
*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:14px 24px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:.25s;

}

.btn-primary{

    background:var(--azul);

    color:white;

}

.btn-primary:hover{

    transform:translateY(-2px);

    background:var(--azul-dark);

}

.btn-success{

    background:var(--verde);

    color:white;

}

.btn-danger{

    background:var(--vermelho);

    color:white;

}

.btn-outline{

    background:white;

    border:2px solid var(--azul);

    color:var(--azul);

}

/*
===================================
INPUTS
===================================
*/

.input{

    width:100%;

    padding:15px;

    border:1px solid #d7d7d7;

    border-radius:12px;

    outline:none;

    font-size:15px;

    transition:.3s;

}

.input:focus{

    border-color:var(--azul);

    box-shadow:0 0 0 4px rgba(37,99,235,.15);

}

/*
===================================
CARDS
===================================
*/

.card{

    background:white;

    border-radius:18px;

    padding:35px;

    box-shadow:var(--sombra);

}

/*
===================================
BADGES
===================================
*/

.badge{

    display:inline-block;

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.badge-success{

    background:#DCFCE7;

    color:#166534;

}

.badge-danger{

    background:#FEE2E2;

    color:#991B1B;

}

.badge-warning{

    background:#FEF3C7;

    color:#92400E;

}