body {
    background: #f8fafc;
    color: #121926;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
}

.form-label {
    font-weight: 500;
}

.form-text {
    font-size: 11px;
    color: #666;
    margin-top: 15px;
}

.form-control:hover, .form-control:active, .form-control:focus,
.form-select:hover, .form-select:active, .form-select:focus {
    box-shadow: none;
    outline: none;
    border-color: #0d6efd;
}

.btn {
    padding: 9px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 400;
    transition: ease 200ms;
    border: none;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;

    &:hover, &:focus, &:active {
        background: #565d64;
    }
}

.btn-success {
    background: #2ecc71;
    color: #fff;

    &:hover, &:focus, &:active {
        background: #2cbf69;
    }
}

.btn-default {
    background: #009ef7;
    color: #fff;

    &:hover, &:focus, &:active {
        background: #0095e8;
    }
}

.btn-warning {
    background: #ffc107;
    color: #fff;

    &:hover, &:focus, &:active {
        background: #efb507;
    }
}

.alert {
    font-size: 13px !important;
    color: #fff;
    border-color: transparent;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-success {
    background-color: #2ecc71;
}

.alert-danger {
    background-color: #f72e36;
}

.alert-info {
    background-color: #3498db;
}

.alert-warning {
    background-color: #f39c12;
}

.alert-dark {
    background-color: #111;
}