.permit-title {
    position: relative;
}

.permit-title::after {
    content: "";
    width: 100%;
    height: 4px;
    background: #041E5C;
    position: absolute;
    bottom: -8px;
    border-radius: 4cap;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab {
    padding: 1px;
    padding-top: 3px;
    padding-bottom: 4px;
    border: none;
    cursor: pointer;
    transition: all .3s;

}

.tab.active {

    border-radius: 10px;
    padding-top: 3px;
    box-shadow: 1px 1px 3px 0px #ccc;

}

.tab-box {
    display: none;
    padding: 20px;
}

.tab-box.active {
    display: block;
}

.footer-underline::after {
    content: "";
    position: absolute;
    background: url(../public/img/line.png);
    bottom: -6px;
    right: 0;
    width: 82px;
    height: 4px;
    background-repeat: no-repeat;
}

input:focus {
    outline: 0 !important;
}

.typed-cursor{
    color: white;
}