@media (max-width: 767px){
    .error-box, .login-register, .login-sidebar .login-box {
        position: relative;
        padding: 50px 0 !important;
    }
}

form#login-reg {
    padding: 150px 0;
}

.card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 70px;
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
}
.card-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: .5rem 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.card .card-title {
    font-weight: 700;
    /*padding: 20px;*/
    text-transform: uppercase;
    letter-spacing: 2px;
}

.small-text{
    background-color: #fdf220;
    padding: 10px;
    margin-left: 10px;
    color: #5a5717;
}

/* ── Toast Notifications ─────────────────────────────────────── */
#toast-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.app-toast {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 380px;
    padding: 14px 16px 14px 20px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.13), 0 1px 4px rgba(0,0,0,.08);
    font-size: 13.5px;
    line-height: 1.45;
    color: #333;
    pointer-events: all;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity .28s ease, transform .28s ease;
    border-left: 4px solid #ccc;
}

.app-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.app-toast.hide {
    opacity: 0;
    transform: translateY(-16px);
}

.app-toast.toast-success { border-left-color: #28a745; }
.app-toast.toast-error   { border-left-color: #dc3545; }
.app-toast.toast-warning { border-left-color: #f0ad4e; }
.app-toast.toast-info    { border-left-color: #17a2b8; }

.app-toast .toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}
.app-toast.toast-success .toast-icon { color: #28a745; }
.app-toast.toast-error   .toast-icon { color: #dc3545; }
.app-toast.toast-warning .toast-icon { color: #f0ad4e; }
.app-toast.toast-info    .toast-icon { color: #17a2b8; }

.app-toast .toast-body {
    flex: 1;
    font-weight: 500;
}

.app-toast .toast-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    padding: 0 0 0 8px;
    flex-shrink: 0;
    transition: color .15s;
}
.app-toast .toast-close:hover { color: #555; }

.app-toast .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    transition: width linear;
}
.app-toast.toast-success .toast-progress { background: #28a745; }
.app-toast.toast-error   .toast-progress { background: #dc3545; }
.app-toast.toast-warning .toast-progress { background: #f0ad4e; }
.app-toast.toast-info    .toast-progress { background: #17a2b8; }
