.add-student-container{
    padding: 40px 20px;
}
.input-group-disaplay{
    width: 100%;
}

.error-or-success-pane{
    background-color: green;
    padding: 5px 5px;
    width: 100%;
    color: white;
    border: 5px;
}

.error-or-success-pane h1{
    font-size: 20px;
    font-weight: lighter;
}

.messagebox{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 9999;
    display: none;
}

.messagebox.active{
    display: grid;
}

.messagebox-content{
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 70px rgba(0,0,0,0.9);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 15px;
    border: 1px solid #ccc;
    min-width: 300px;
    max-width: 300px;
}

.messagebox-content h1{
    font-size: 25px;
    font-weight: bold;
    color: #696969;
    margin-bottom: 10px;
    text-align: center;
}

.msg-body{
    text-align: center;
}

.btn.btn-primary.btn-sm, .btn.btn-danger.btn-sm{
    width: 100%;
}

