@font-face {
    font-family: 'Kanit';
    src: url('fonts/Kanit/Kanit-Light.ttf');
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Kanit', Arial, Helvetica, sans-serif;
}

#main-container {
    background-color: #050505;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#info-student {
    display: flex;
    flex: .8;
    align-items: center;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    padding: 1rem 0;
}

#container-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#container-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

input[type="text"] {
    background-color: transparent;
    border: none;
    box-shadow: 1px 1px 5px #f5f5f520;
    height: 40px;
    border-radius: 10px;
    color: #f7f7f7;
    padding: 0 .7rem;
    transition: .8s;
}

input[type="text"]:focus {
    outline: none;
}

input[type="text"].box-shadow-effect {
    box-shadow: 1px 1px 5px #f5f5f550;
}

input[type="text"]::placeholder {
    text-shadow: 1px 1px 5px #f5f5f520;
}

#student-name.box-error,
#firstBimester.box-error,
#secondBimester.box-error,
#thirdBimester.box-error,
#fourthBimester.box-error {
    box-shadow: 1px 1px 5px #e60f0f;
}

button {
    background-color: transparent;
    box-shadow: 1px 1px 5px #f5f5f550;
    height: 40px;
    border: none;
    width: 100px;
    border-radius: 10px;
    font-size: .7rem;
    text-transform: uppercase;
    color: #f1f1f1;
    transition: .8s ease;
    cursor: pointer;
}

#button-send:hover {
    background-color: #f1f1f1;
    box-shadow: 1px 1px 5px #f1f1f1;
    color: #050505;
}

#button-clean:hover {
    background-color: #e60f0f;
    box-shadow: 1px 1px 5px #e60f0f;
    color: #f1f1f1;
}

#line-box {
    width: 50%;
    margin: 1rem 0;
    border-bottom: 1px solid #33333350;
}

#container-list-result {
    flex: 5;
    margin-top: 20px;
    width: 70%;
    padding: 1rem;
}

#list {
    list-style: none;
    overflow: auto;
    height: 50vh;
}

#list::-webkit-scrollbar-track {
    background-color: #30f540;
}

#list li {
    color: #f1f1f1;
    height: 60px;
    border: 1px solid #33333350;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .7rem;
    text-transform: uppercase;
    font-size: .8rem;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: .6s;
}

#list li.approved {
    border-left: 4px solid #30f540;
}

#list li.reproved {
    border-left: 4px solid #e60f0f;
}

#list li.recovery {
    border-left: 4px solid #ff9a02;
}

#list li div {
    display: flex;
    gap: 20px;
}

#first-result span,
#second-result span,
#third-result span,
#fourth-result span {
    color: #f1f1f160;
}

