/**
 * Buttons Styles
 * -----------------------------------------------------------------------------
 * This file contains styles for buttons across the entire platform.
 * caution when making updates, as changes will affect all pages that utilize
 * these button styles.
 *
 * If you need to make updates for a specific case, please limit your changes
 * to the relevant page or component.
 */
.sp-btn {
  font-size: 1em;
  flex-shrink: 0;
  border-radius: 0.5rem;
  border: 1.5px solid #004EFF;
  background-color: #004EFF;
  color: #fff;
  width: auto;
  padding: 0.31rem 2rem;
}

.sp-btn:hover {
  border: 1.5px solid #3371FF;
  background: #3371FF;
  color: #E0E1E4;
}

.sp-btn:focus {
  border: 1.5px solid #0037BB;
  background: #0037BB;
  color: #E0E1E4;
}

.sp-btn-disabled,
.sp-btn-disabled:focus,
.sp-btn-disabled:hover,
.sp-btn:disabled {
  cursor: not-allowed;
  border: #E0E1E4;
  background: #E0E1E4;
}

.sp-btn-small {
  font-size: 1.25em;
  padding: 0.31rem 4.56rem;
}

.sp-btn-md {
  font-size: 1.5em;
  padding: 0.31rem 5.88rem;
}

.sp-btn-large {
  font-size: 2em;
  padding: 0.37rem 11.5rem;
}

.sp-btn-outline {
  background-color: #fff;
  color: #004EFF;
}

.sp-btn-outline:hover {
  border: 1.5px solid #3371FF;
  color: #3371FF;
  background-color: #fff;
}

.sp-btn-outline:focus {
  border: 1.5px solid #0037BB;
  color: #0037BB;
  background-color: #fff;
}

.dark-mode .sp-btn-outline {
  background-color: #303030;
  color: #ffffff;
  border-color: #fff;
}

.contact-info-modal {
  text-align: center;
}

.contact-info-hint, .join-us-hint {
  color: #2E344D;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
  text-align: center;
}

.join-us-hint {
  color: rgba(46, 52, 77, 0.8);
}

.join-us-btn, .create-account-btn {
  width: 60%;
  margin-bottom: 10px;
  height: 50px;
  border: 0;
  color: #fff;
  border-radius: 12px;
  background: #004EFF;
}
.join-us-btn:hover, .create-account-btn:hover {
  color: white !important;
  background: #0243d5 !important;
}

.login-hint {
  color: rgba(46, 52, 77, 0.8);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
  text-align: center;
}

.login-btn {
  color: #004EFF;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
  border: 0;
  background: none;
  color: #004EFF;
}

.close-popup-btn {
  border: 0;
  background: none;
}

input {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px;
}

.pre-register-custom-popup, .register-custom-popup, #contact-info-container {
  border-radius: 15px !important;
}

.contact-info-custom-popup, .copy-box {
  border-radius: 15px;
  padding: 30px;
}

.copy-box {
  border: 2px solid #004EFF;
  padding: 10px;
  margin-bottom: 15px;
}
.copy-box .copy-button {
  margin-inline-start: auto;
}
.copy-box .copy-button-green {
  margin-inline-start: auto;
}

.candidates-filter {
  width: 1376px;
  height: 70px;
  flex-shrink: 0;
  border-radius: var(--radius-l, 12px);
  background: #EEF3F6;
}

.field-wrapper {
  margin-right: 1%;
}

.filter-field {
  width: 320px;
  height: 50px;
  text-align: left;
  margin-right: 12px;
  padding: 10px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 0;
  background: #FFF;
  color: rgba(46, 52, 77, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.dropdown-menu {
  max-height: 500px;
  overflow-x: hidden !important;
}

.custom-dropdown {
  height: -moz-fit-content;
  height: fit-content;
}

.dropdown-item {
  padding: 0.25rem 0.5rem !important;
  margin: 0;
}

.dropdown-menu .dropdown-item:active {
  background: none !important;
  text-decoration: none !important;
  color: inherit !important;
}

.dropdown-toggle {
  position: relative;
}
.dropdown-toggle::after {
  position: absolute;
  right: 10px;
  top: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  margin-bottom: 5px; /* Add margin for spacing if needed */
}

.filter-btn {
  width: 124px;
  height: 50px;
  flex-shrink: 0;
  border: 0;
  border-radius: 8px;
  background: #004EFF;
  color: #FFF;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.swal2-popup {
  border-radius: 1.125rem;
}
