#navbar{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#nav_list{
    display: flex;
    list-style: none;
    gap: 50px;
}


.nav-item a{
    text-decoration: none;
    color: black;
    font-weight: 600;
}

.nav-item.active a {
    color: black;
    border-bottom: 3px solid blue;
}

.btn-default{
    border: none;
    color: white;
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: blue;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0 0 10px black;
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover{
    background-color: rgb(9, 49, 231);
}

span{
    color: rgb(9, 49, 231);
}

#input-container{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#form-header{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

#form-title{
    display: flex;
}

.btn-success{
    background-color: green;
    display: flex;
    align-items: center;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    gap: 8px;
    box-shadow: 0px 10px 15px -3px;
}

.btn-secondary{
    background-color: gray;
    display: flex;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;   
    box-shadow: 0px 10px 15px -3px;
    cursor: pointer;
}

.btn-danger{
    background-color: red;
    display: flex;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;   
    box-shadow: 0px 10px 15px -3px;
    cursor: pointer;
}

.btn-primary{
    background-color: rgb(9, 49, 231);
    color: white;
    display: flex;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;   
    box-shadow: 0px 10px 15px -3px;
    cursor: pointer;
}

form{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.form-label{
    font-size: 12px;
    color: #404044;
    font-weight: 500;
}

.form-control{
    display: flex;
    align-items: center;
    background-color: white;
    box-shadow: 0px 10px 15px -3px;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 8px;
}

#form-container{  
    width: 100%;            
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.form-row .input-box{
    flex: 1;
    min-width: 200px;
}

.input-box{
    width: 100%;
}

.form-select{
    border-radius: 8px;
    font-weight: 500;
    padding: 10px;
}

.input-group{
    display: flex;
    width: 100%;
}

.input-group .form-control {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group .btn{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}