@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    transition: all 0.5s linear;
    font-family: 'Poppins',
    sans-serif;
    font-weight: 400;
}

.flash-alert {
    position: fixed;
    top: 5rem;
    right: 5px;
    z-index: 500000000000000;
    animation: flash-anim 0.5s linear 0.5s;
    font-weight: 700;
}

.flash-alert.alert-warning {
    border-left: 10px solid #FDB813;
}

.flash-alert.alert-success {
    border-left: 10px solid #31A73B;
}

.flash-alert.alert-danger {
    border-left: 10px solid #F60109;
}

.flash-alert.alert-info {
    border-left: 10px solid #1BA8F0;
}

.login-title {
    font-size: 25px;
    font-weight: bold;
}

.login-box {
    background-color: aliceblue;
    padding: 1rem;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1),
    -1px -1px 5px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    background-color: aliceblue;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.dashboad-avatar {
    width: 50px;
    border-radius: 50%;
}

.dropdown-toggle {
    border: none;
    outline: 0 !important;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
}

.school-name {
    font-size: 20px;
    font-weight: bold;
}

.card-img-top {
    height: 300px;
    object-fit: cover;
}