body {
    background-color: rgb(232, 239, 246);
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a {
    color: #80BA42;
    text-decoration: none;
}
.text-box {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f8f6f6;
}
.title {
    font-size: 3rem;
    line-height: 1.25;
    color: #4c4646;
}

.body-text {
    font-size: 20px;
    text-align: justify;
}
button {
    margin: 0;
    padding: 9px;
    border-radius: 20px;
    border: none;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.brand-btn {
    padding: 13px;
    border-radius: 20px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 8px;
    cursor: pointer;
    border: none;
}

.brand1 {
    background-color: #247392;
    color: #ffffff;
}
.brand2 {
    background-color: #dee856;
    color: #6f6a6a;
}

.row-devider {
    border-bottom: 1px solid #d1cbcb;
    padding-top: 15px;
    padding-bottom: 15px;
}
.field-wrapper {
    display: flex;
    align-items: center;
}

.field-wrapper label {
    margin-right: 10px;
}



select {
    flex: 1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    width: 100%;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

/* Style the custom arrow */
select::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
}

/* Add some styles for the dropdown items */
select option {
    padding: 10px;
    font-size: 16px;
}

/* Style for the selected item */
select:focus + .selected::after {
    content: attr(data-value);
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
    border: 1px solid #80BA42 !important;
}

input, textarea {
    flex: 1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    width: 100%;
    outline: none;
    border: 1px solid #ababab;
    border-radius: 18px !important;
}

input:focus, textarea:focus {
    outline: none !important;
    border: 1px solid #80BA42 !important;
}
input[type="checkbox"] {
    border-radius: 0 !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #80BA42 !important;
    cursor: pointer;
    outline: none;
    position: relative;
  }

  /* Custom checkbox design when checked */
  input[type="checkbox"]:checked::after {
    padding: 0;
    content: "✓";
    position: absolute;
    border-radius: 0 !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    outline: none;
    color: #80BA42;
  }

/* input[type="file"] {
    position: relative;
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 2px solid #007BFF;
    border-radius: 4px;
    background-color: transparent;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
}
input[type="file"]::before {
    content: 'Choose File';
    display: inline-block;
    padding: 8px 20px;
    background-color: #007BFF;
    color: #fff;
    border-radius: 4px;
}
input[type="file"]:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
} */
.help_text {
    color: #7d7878;
    font-size: 11px;
    font-style: italic;
}
.navbar {
    background-color: #247392;
}

.sidebar {
    position: relative;
    height: 100vh;
}
.sidebar.hide {
    display: none !important;
}
.sidebar-container {
    position: fixed;
    padding-top: 100px;
    background-color: #ffffff !important;
    height: 100vh;
    width: inherit;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, .3);
}
.sidebar a, .sidebar a:active {
    color: #5d5858;
    padding-top: 6px;
    border-radius: 8px;
}

.sidebar a:hover {
    color: #ffffff;
    background-color: #247392;
}

.main-content {
    margin-top: 100px;
}

.card {
    background-color: #ffffff;
    border: none;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, .3);
    margin-bottom: 20px;
}
.passport-photo {
    width: 100%;
    height: auto;
}