body {
    font-family: Arial, sans-serif;
}

.tab {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
}

.tablinks {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    padding: 14px 16px;
    transition: 0.3s;
}

.tablinks.active {
    background-color: #fec544;
    color: #070d1b;
    border-radius: 8px 8px 0px 0px;
}

.tabcontent {
    display: none;
    padding: 20px;
}

.tabcontent label{
    margin: 0px;
}
.tabcontent input{
    margin: 0px;
    height: 42px;
}
.tabcontent select{
    height: 42px;
}
.regdata-double{
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}
.regdata-double div{
    width: 40%;
}
#Finish p {
    font-size: 1.2em;
    color: green;
}

form {
    display: flex;
    flex-direction: column;
}

form label, form input, form select, form button {
    margin: 10px 0;
}

.fee-container {
    background-color: #111623;
    padding: 20px;
    border: 1px solid #232935;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin:20px 0px;
}
.fee-title {
    font-size: 24px;
    font-weight: bold;
    color: #fec544;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #fec544;
    padding-bottom: 10px;
}
.fee-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.fee-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.fee-list li:last-child {
    border-bottom: none;
}
.original-price {
    text-decoration: line-through;
    color: #d9534f;
}
.new-price {
    font-weight: bold;
    color: #5cb85c;
}