body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    /* height: 100vh; */
    margin: 0;
}
.container{
    padding: 20px !important;
    padding: 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.content-container {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-top: 100px;
    /* padding-left: 20px; */
    /* padding-right: 20px; */
    box-sizing: border-box; /* Ensure padding is included in the total width */
    flex-wrap: wrap;
}

.columns {
    flex: 1 1 45%;
    box-sizing: border-box;
    padding: 10px;
}

.centered-header {
    text-align: center;
}

.logo-description img {
    max-width: 100%;
    height: auto;
}
#register-form{
    padding-top: 80px;
}
.form-wrapper {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 20px;
    position: relative; /* Ensure relative positioning for the heading */
    align-self: flex-start;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    flex: 1;
    min-width: 200px;
    display: flex;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #9b9a9a;
    background-color: #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.heading {
    margin-top: 0;
    margin-bottom: 20px;
    background-color: #9B2C61;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    
}
.heading2 {
    margin-top: 0;
    margin-bottom: 20px;
    background-color: #9B2C61;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

input:focus, select:focus {
    border-width: 4px;
    border-color: #4CAF50 !important; /* Change border color to green */
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5) !important; /* Optional: Add a slight green glow */
    outline: none; /* Remove default focus outline */
}

button {
    width: auto;
    padding: 10px;
    background-color: #9B2C61;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

button:hover {
    background-color: #aa4e7b;
}

/* Full width for mobile */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        padding-left: 20px; /* Maintain the padding on mobile */
        padding-right: 20px; /* Maintain the padding on mobile */
        margin-bottom: 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .columns {
        max-width: 100%;
    }

    .form-wrapper {
        width: 100%;
    }

    /* Adjust select field width on mobile */
    select {
        width: 100%; /* Ensure form field takes the full width */
    }
    select option{
        width: 100%;
        box-sizing: border-box;
    }
}

/* Override Select2 styles */
.select2-container--default .select2-selection--single {
    background-color: #ccc !important;
    border: 1px solid #9b9a9a !important;
    border-radius: 4px !important;
    padding: 10px !important;
    height: auto !important;
    box-sizing: border-box !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000 !important;
    line-height: 1.5 !important;
}

.select2-container .select2-dropdown {
    background-color: #ccc !important;
    border: 1px solid #9b9a9a !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #9B2C61 !important;
    color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-container {
    width: 100% !important;
}

/* styles for password toggle icon */
.password-container {
  position: relative;
  width: 100%; /* Ensure the container takes full width */
}

.password-container input {
  width: 100%;
  padding-right: 40px; /* Add padding to prevent text from overlapping the icon */
  box-sizing: border-box; /* Ensure padding is included in the width */
}

.toggle-password {
  position: absolute;
  right: 10px; /* Adjust padding from the right */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Adjust for exact vertical centering */
  cursor: pointer;
  color: #777; /* Icon color */
  font-size: 18px; /* Icon size */
}

.toggle-password:hover {
  color: #333; /* Icon color on hover */
}
