@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins:wght@200&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
}

.alert {
    height: 30px !important;
    padding: 3px 3px;
    font-size: 15px;
}
.accordion-button {
    background-color: #f8f9fa;
    color: #6A5ACD;
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    background-color: #E6F0FF;
    color: #6A5ACD;
}

.accordion-body {
    padding: 15px;
}

/* Fondo de la pantalla de inicio */
.bg-sign-in {
    background: linear-gradient(69.66deg, #6A5ACD 19.39%, #E0BBE4 96.69%);
    height: 100vh;
}

/* Formularios */
.form-sign-in, .sign-up {
    border-radius: 10px;
    width: 380px;
}

/* Fondo oscuro de la pantalla */
.bg-show {
    display: block !important;
    z-index: 0;
}

.bg {
    background-color: rgba(0, 0, 0, 0.575);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    cursor: pointer;
    display: none;
}

/* Registro */
.register {
    background: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1000px;
    transform: translate(-190px, -260px);
    transition: 1s ease-out;
}

.register-active {
    margin-top: 0;
    transition: 1s ease-out;
}

button[type="submit"] {
    background-color: #6A5ACD;
}

.E-classe {
    border-left: solid 6px #6A5ACD;
}

.bg-sign-in p, .bg-sign-in label {
    font-size: 14px;
    line-height: 17,07px;
    font-weight: 400;
    color: #6C6C6C;
}

input[type="email"]::placeholder, input[type="password"]::placeholder {
    font-size: 12px;
    line-height: 15px;
    color: #CDCDCD;
}

.sign-in {
    font-size: 22px;
    line-height: 27px;
    font-weight: 600;
}

/* Start Dashboard */

/* Sidebar */
.bg-sidebar {
    background-color: #B0C4DE;
    transition: margin 0.6s ease-in-out;
    z-index: 1;
}

.bg-content {
    background: #F5F5F5;
}

.h7 {
    font-size: 14px;
}

/* Cards */
.admin-color {
    color: #6A5ACD;
}

.cards .card__items {
    border-radius: 8px;
    width: 220px;
    height: 150px;
}

.card__items--blue {
    background-color: #E6F0FF;
}

.card__items--blue i {
    color: #74C1ED;
}

.card__items--rose {
    background-color: #FBE7F6;
}

.card__items--rose i {
    color: #EE95C5;
}

.card__items--yellow {
    background-color: #FFF9E5;
}

.card__items--yellow i {
    color: #00C1FE;
}

.card__items--gradient {
    background: linear-gradient(110.42deg, #6A5ACD 18.27%, #E0BBE4 91.84%);
}

.card__items--gradient i {
    color: #FFFFFF;
}

.nbr {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

/* End Cards */

/* End Dashboard */

/* Students List */
.student_list {
    border-collapse: separate;
    border-spacing: 0 15px;
}

.table th {
    font-size: 12px;
    color: #ACACAC;
}

table tbody {
    font-size: 14px;
}

.table a {
    color: #6A5ACD;
}

.student-list-header {
    border-bottom: 2px solid #E5E5E5;
}

.student-list-header i {
    color: #6A5ACD;
}

.btn-primary {
    background-color: #6A5ACD;
    border-color: #6A5ACD;
}

.btn-primary:hover {
    background-color: #4B0082;
    border-color: #4B0082;
}

.btn-primary:focus {
    background-color: none;
}

/* End Students List */

.fa-search {
    left: -30px;
}

.bg-sidebar a:hover {
    background-color: #6A5ACD;
    border-radius: 5px;
    width: 130px;
}

.valid {
    color: red;
}

/* Media Queries */
@media screen and (min-width: 768px) {
    .bg-sidebar {
        position: sticky !important;
        top: 0;
        width: 25% !important;
    }

    .hidden-sidebar {
        margin-left: -25%;
    }
}

@media screen and (max-width: 768px) {
    .hidden-sidebar-mobile {
        margin-left: -50%;
    }
}
/* Botones generales */
button[type="submit"] {
    background-color: #6A5ACD;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0.375rem; /* para coincidir con tus estilos */
    padding: 0.75rem 1.5rem;
    cursor: pointer;
}
button[type="submit"]:hover {
    background-color: #4B0082;
    transition: 0.3s ease;
}
