form#Questions {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.form-group {
    margin-bottom: 20px; 
}

label.control-label {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}


.btn-theme-blue {
    background-color: #0172c5 !important;
    color: #fff !important;
  }

.error {
    color: red;
    font-size: 0.9rem;
    display: none;
}

select {
    margin-right: 5px;
    padding: 7px;
    width: 150px;
    border-radius: 7px;
    border: 1px solid #ddd;
}

textarea {
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 10px;
}

input.form-control, select.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 5px;
}

.form-check {
    margin-top: 10px;
}

.checkbox-group .form-check-label {
    margin-left: 5px;
}

.btn-primary
{
    background-color: #0675c6;
    color: white;
}


.btn-secondary
{
    background-color: #ffffff;
    color: #000000;
}

button {

    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
    padding: 123px;
    border: var(--arcturus-styles-sys-color-border-default) 1px solid;
    padding: 9px 47px;
}

button:hover {
    background-color: #055a99;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
}

.step.active {
    background-color: #0675c6;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
}

.custom-textarea {
    width: 100%; 
    height: auto; 
    resize: none; 
    box-sizing: border-box; 
    line-height: 1.5; 
    padding: 10px; 
}

.required-star {
    color: red;
    margin-left: 4px;
}

.error {
    border-color: red;
}

.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 4px;
    transition: opacity 0.3s ease;
    display: none;
}

.error-message.visible {
    display: block;
}
