html body ._auth-wrapper{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: top;
    justify-content: center;
    margin-top: 35px;
}

html body ._auth-wrapper img{
    margin-bottom: 25px;
}

html body ._auth-wrapper img._btn-loading{
    margin-bottom: 0px !important;
    opacity: 0.75;
}
html body ._form-wrapper{
    background-color: white;
    padding: 55px;
    width: 550px;
}

html body ._loading{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

html body .form-control._error{
    border: 1px solid red;
}

/* Base Styles for the Label */
.c-markbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    width: 100%;
}

/* Hide the Default Checkbox */
.c-markbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Custom Checkbox Design */
.custom-checkbox {
    width: 35px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: inline-block;
    background-color: #fff;
    transition: all 0.3s ease;
    position: relative;
}

/* Checkmark (Visible When Checked) */
.custom-checkbox::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: rotate(45deg);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Checked State */
.c-markbox input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #4caf50; /* Green background for checked state */
    border-color: #4caf50;
}

.c-markbox input[type="checkbox"]:checked + .custom-checkbox::after {
    opacity: 1;
    transform: rotate(45deg);
}

/* Hover Effect */
.c-markbox:hover .custom-checkbox {
    border-color: #4caf50;
}

/* Focus Effect */
.c-markbox input[type="checkbox"]:focus-visible + .custom-checkbox {
    outline: 2px solid #4caf50;
    outline-offset: 2px;
}


/* Modal.css */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
  }
  
  .modal-container {
    background-color: white;
    border-radius: 8px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    width: 100%;
  }
  
  .modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
  }
  .modal-header::before, .modal-header::after{
    display: none !important;
  }
  
  .modal-close-button {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
  }
  
  .modal-close-button:hover {
    color: #333;
  }
  
  .modal-content {
    padding: 24px;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideIn {
    from {
      transform: translateY(-30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Add responsive styles */
  @media (max-width: 576px) {
    .modal-container {
      max-width: 90%;
      margin: 0 16px;
    }
    
    .modal-header {
      padding: 12px 16px;
    }
    
    .modal-content {
      padding: 16px;
    }
  }