@font-face {
    font-family: 'abc-arizoneflare-light';
    src: url('../../fonts/ABCArizonaFlare-Light-Trial.otf') format('woff2'),
         url('../../fonts/ABCArizonaFlare-Light-Trial.woff') format('woff'),
         url('../../fonts/ABCArizonaFlare-Light-Trial.woff2') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'abc-arizoneflare-light', sans-serif;
    position: relative;
}

body {
    display: flex;
    flex-direction: column;
    letter-spacing: 0.2px;
    
}

.bg-1 {
    background-image: url('/img/Login Page.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: #c3b1a6;
}

.bg-color-1 {
    background-color: #c3b1a6;
    color: #70392e;
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #70392e;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.bottom-nav a {
    text-decoration: none;
    color: #c3b1a6; /* Default icon color */
    text-align: center;
}

.bottom-nav a.active {
    color: #ffffff; /* Active icon color */
}

.bottom-nav img.icon {
    display: block;
    height: 24px;
    margin: 0 auto;
}

.bottom-nav span {
    font-size: 0.8em;
}

/* For desktop view */
@media (min-width: 768px) {
    .bottom-nav {
        position: relative;
        top: auto;
        display: flex;
        justify-content: space-between;
    }
}

.text-color-1 {
    color: #6f3a2e;
}


/* HOME */
.thai-text {
    font-size: 0.8rem;
    margin-top: -6px;
}

.service-text {
    font-size: 1rem;
}

.content {
    flex: 1; 
}

.carousel-inner img {
    object-fit: cover;
}

.custom-embed {
    margin-top: 20px;
}

/* Custom carousel indicators */
.carousel-indicators {
    position: absolute;
    left: 10px;
    flex-direction: row;
}

.carousel-indicators li {
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 2px;
    margin: 2px;
    transition: width 0.3s ease;
}

.carousel-indicators .active {
    width: 20px;
    background-color: #ffffff;
}

/* Hide the arrows */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.btn-reservation {
    background-color: #70392e;
    color: #c3b1a6;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    background-image: url('/img/icons/Right Arrow.png');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 8px 16px;
    transition: background-image 0.3s ease;
}

.btn-reservation:hover {
    background-image: url('/img/icons/Right Arrow Br.png');
    /* background-color: #5a2d24; */
    color: #c3b1a6;
}

/* Horizontal scroll container */
.horizontal-scroll-container {
    overflow-x: auto;
    /* padding: 20px; */
    scroll-behavior: smooth;
    margin-bottom: 3rem;
}

.horizontal-scroll-container::-webkit-scrollbar {
    display: none; 
}

.horizontal-scroll-item {
    flex: 0 0 auto;
    width: 250px;
    margin-right: 10px;
}

.horizontal-scroll-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

/* RESERVATION */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.header-1 {
    background-color: #70392e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rating-header {
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rating-place {
    font-size: 0.6rem;
}

.close-icon {
    width: 2em;
    cursor: pointer;
}

.close-img {
    width: 50%;
    height: auto;
    display: block;
}

.close-img {
    width: 20px;
    height: auto;
    display: block;
}

.container {
    padding: 0 20px 80px 20px;
}

.service-body {
    position: relative;
    /* background-image: url('/img/background/Thai Tradional Massage Background.jpg'); */
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 120px); 
    padding: 20px;
    color: #ffffff; 
}

.service-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 0;
}

.service-container {
    position: relative;
    z-index: 1; 
}

.service-title {
    position: relative;
    z-index: 1; 
}

.reservation-card, .login-card {
    background-color: #ede4df;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    color: #70392e;
}

.reservation-method {
    margin-top: 30px;
}

.reservation-method h5 {
    margin-bottom: 20px;
}

.reservation-method .btn {
    margin-bottom: 10px;
}

.cancel-reservation-btn, .register-reservation-btn, .login-reservation-btn, .button {
    background-color: #70392e;
    color: #c3b1a6;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.cancel-reservation-btn:hover, .register-reservation-btn:hover, .login-reservation-btn:hover, .button:hover {
    background-color: #5a2d24;
}

.row img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.reservation-card span{
    font-size: 0.8rem;
}

.description-reserve{
    font-size: 0.8rem;
    line-height: 1;
    text-align: justify;
}

.logo-img {
    width: 13em;
}

select#state {
    width: 100%;
    box-sizing: border-box;
}

/* Apply specific styles for mobile devices */
@media (max-width: 767px) {
    select#state {
        font-size: 14px;
        padding: 10px;
    }
}

.select-group label, .select-date label, .select-state label {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.select-group select {
    border: none;
    border-bottom: 1px solid #70392e;
    width: 100%;
    padding: 5px 20px 5px 5px; /* Adjust padding for arrow space */
    background-color: transparent;
    color: #70392e;
    appearance: none;
    background-image: url('/img/icons/Down Arrow.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: 16px 8px;
}

.select-date select, .select-state select {
    border: none;
    /* border-bottom: 1px solid #70392e; */
    width: 40%;
    padding: 5px 20px 5px 5px; /* Adjust padding for arrow space */
    background-color: transparent;
    color: #70392e;
    appearance: none;
    background-image: url('/img/icons/Down Arrow.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: 16px 8px;
}

.location-text {
    font-size: 0.6rem;
}

.location-list {
    margin-top: 30px;
}

.location-list h5 {
    margin-bottom: 20px;
}

.location-item {
    padding: 5px 10px 10px 10px;
    border-bottom: 1px solid #70392e; /* Add bottom border */
}

.location-item img {
    width: 24px;
}

.location-item .heart-icon {
    width: 24px;
    cursor: pointer;
}

.location-item .location-name {
    font-size: 1rem;
    /* font-weight: bold; */
}

.location-item .distance {
    color: #70392e;
}

.time-slot button {
    background-color: #ede4df;
    color: #70392e;
    border: none;
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    margin: 3px;
}

.time-slot button.active {
    background-color: #70392e;
    color: #c3b1a6;
}

.time-slot button:hover {
    background-color: #5a2d24;
    color: #c3b1a6;
}

.submit-button {
    display: block;
    width: 90%;
    padding: 10px;
    background-color: #70392e;
    color: #c3b1a6;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
}

.submit-button:hover {
    background-color: #5a2d24;
}

h3, h5 {
    color: #70392e;
}

.location-list a {
    color: #70392e; /* Set link color to dark brown */
    text-decoration: none; /* Remove underline */
}

.location-card {
    background-color: #ede4df;
    border: 1px solid #70392e;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.location-card .location-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-card .heart-icon {
    width: 24px;
    cursor: pointer;
}

.location-card .details {
    margin-top: 10px;
}

.location-card .details span {
    line-height: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.location-card .details small {
    font-size: 0.85em;
}

.tel, .hours {
    display: inline-block;
}

.date-day-slot-container {
    overflow-x: auto;
}

.date-day-slot {
    display: flex;
}

.date-slot {
    background-color: #ede4df;
    border: 1px solid #70392e;
    border-radius: 10px;
    color: #70392e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 3px;
    cursor: pointer;
    flex: 0 0 auto;
    font-size: 0.8rem;
}

.date-slot.active {
    background-color: #70392e;
    color: #c3b1a6;
}

.select-date select {
    border: none;
    border-bottom: 1px solid #70392e;
    width: 40%;
    padding: 5px 20px 5px 5px; /* Adjust padding for arrow space */
    background-color: transparent;
    color: #70392e;
    appearance: none; 
    background-image: url('/img/icons/Down Arrow.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: 16px 8px;
}

.tel, .hours {
    display: inline-block;
}

.heart-icon {
    width: 24px;
    cursor: pointer;
}

.heart-icon.active {
    background-image: url('/img/icons/Heart Solid.png');
}

.rewards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.history-button {
    background-color: #d1c2bd;
    color: #70392e;
    padding: 5px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.points-section {
    margin-bottom: 20px;
}

.points-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.points-details div {
    display: flex;
    align-items: center;
}

.points-details img {
    width: 1.5em;
    height: 1.5em;
    margin-left: 5px;
}

.points-section h3 {
    margin: 0;
}

.state-outlet-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.state-select,
.outlet-select {
    width: 48%;
    padding: 5px;
    border: none;
    border-bottom: 1px solid #70392e;
    background-color: transparent;
    color: #70392e;
}

.redemption-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.redemption-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ede4df;
    padding: 10px;
    border-bottom: 1px solid #70392e;
    border-radius: 10px;
    margin-bottom: 5px;
    text-decoration: none;
    color: #70392e;
}

.redemption-item:hover {
    background-color: #d1c2bd;
    text-decoration: none;
    color: #70392e;
}

.history-list {
    margin-top: 20px;
}

.history-item {
    border-bottom: 1px solid #70392e;
    padding: 10px 0;
}

.history-item .item-name {
    font-weight: bold;
}

.history-item .points {
    float: right;
    font-weight: bold;
}

.history-item .details {
    font-size: 0.7rem;
    color: #70392e;
}

.details-place {
    margin-top: -5px;
}

.no-more-history {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 20px;
}

.item-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px;
}

.item-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.item-description {
    margin-bottom: 20px;
    font-size: 0.8rem;
    line-height: 1;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
}

.details-table td {
    border: none;
    padding: 0 5px;
    align-content: baseline;
}

.details-table .small-font {
    font-size: 0.8em;
}

.messages-header {
    margin-bottom: 20px;
}

.message-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.message-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #70392e;
    cursor: pointer;
}

.message-item span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
}

.no-more-messages {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

.no-more-history {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 20px;
}

.profile-img {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: 1px white solid;
}

.big-profile-img {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    border: 1px white solid;
    margin-bottom: 15px;
    position: absolute;
}

.profile-details {
    flex: 1;
}

.profile-details-info {
    border-bottom: 1px solid #6f3a2e;
}

.profile-details h2,
.profile-details p {
    margin: 0;
}

.my-profile-btn {
    background-color: #d2c2bd;
    /* background-color: #c3b1a6; */
    color: #70392e;
    border: none;
    padding: 2px 15px;
    border-radius: 10px;
}

.profile-info-container {
    width: 100%;
    box-sizing: border-box;
    height: -webkit-fill-available;
    padding: 20px 0 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.account-info-container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.package-place {
    font-size: 0.6rem;
}

.account-info {
    background-color: #c3b1a6;
    color: #6f3a2e;
    /* 3/4 of the page */
    box-sizing: border-box;
    height: -webkit-fill-available;
    overflow-y: auto;
    width: 100%;
}

.account-main {
    padding: 20px 20px 50px 20px;
    border-radius: 10px;
}

.account-profile {
    padding: 40px 20px 50px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    margin-top: 120px;
}

.account-rating, .welcome-container {
    padding: 40px 20px 50px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    flex: 1;
}

.account-info .amount {
    font-size: 2.5rem;
}

.account-info .profile {
    font-size: 1rem;
    margin-top: -10px;
}

.account-info .expiry {
    font-size: 0.6rem;
    margin-top: -10px;
}

.account-info .package,
.location-package,
.date-package {
    font-size: 0.6rem;
}

.history {
    margin: 20px 0;
}

.history .history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #70392e;
}

.history .history-item .details .location {
    flex: 1;
    font-size: 0.8rem;
}

.history .history-item .details .date {
    flex: 1;
    font-size: 0.6rem;
}

.history .history-item .history-amount {
    text-align: right;
    font-size: 0.8rem;
}

.history .history-item .points {
    text-align: right;
    font-size: 0.6rem;
}

.qr-header {
    border-bottom: 1px solid #6f3a2e;
    align-items: end;
    margin-top: -10px;
}

.no-more-history {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

.massage-progress {
    font-size: 0.8rem;
}

.progress-bar {
    color: #c3b1a6;
    background-color: #6f3a2e;
    border: 1px solid #6f3a2e;
}

.progress {
    background-color: #c3b1a6;
    border: 1px solid #6f3a2e;
}

.location-package,
.date-package {
    font-size: 0.8rem;
}

.idno,
.name,
.email {
    font-size: 0.8rem;
}

.profile-name {
    color: #c3b1a6;
}

.promo-body {
    /* background-image: url('/img/background/Background Ramadan Promo Extended.jpg'); */
    background-size: cover;
    background-position: center;
    padding: 20px;
    color: #c3b1a6;
    position: relative;
    flex: 1;
}

.promo-title {
    font-size: 40px;
    margin-bottom: 0;
}

.promo-discount {
    font-size: 70px;
    margin-bottom: 0;
}

.promo-discount span {
    font-size: 40px;
}

.promo-service {
    margin-top: -20px;
}

.accordion-container {
    margin-top: 40px;
}

.accordion {
    background-color: rgba(255, 0, 0, 0);
    margin-top: 20px;
    cursor: pointer;
    border: none;
    outline: none;
    text-align: left;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    color: #c3b1a6;
    position: relative; /* For positioning the line and arrow */
}

.accordion::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #c3b1a6;
    display: block;
    transition: background-color 0.3s ease; /* Add transition for smooth effect */
}

.accordion.active::after {
    background-color: rgba(255, 0, 0, 0); /* Make the line invisible when active */
}

.accordion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #c3b1a6;
    display: block;
}

.accordion.active {
    border-left: 1px solid #c3b1a6;
    border-right: 1px solid #c3b1a6;
}

.arrow-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    height: 16px; 
}

.panel {
    display: none;
    color: #70392e;
    /* background-color: rgba(255, 0, 0, 0); */
    background-color: #ede4df;
    padding: 10px;
    font-size: 14px;
    border-left: 1px solid #c3b1a6;
    border-right: 1px solid #c3b1a6;
    border-bottom: 1px solid #c3b1a6;
}

.panel.active {
    display: block;
}

.panel ul {
    list-style-type: none;
    padding: 0;
}

.panel ul li {
    margin-bottom: 10px;
}

.accordion.active .arrow-icon {
    transform: translateY(-50%) rotate(90deg);
}

.description {
    font-size: 0.8rem;
    color: #ffffff;
    line-height: 1;
    /* text-align: justify;  */
}

.price {
    font-weight: bold;
    color: #ffffff; 
}

.price-table {
    width: 70%;
    border-collapse: collapse;
    margin-top: 10px;
}

.price-table th,
.price-table td {
    /* padding: 2px 10px; */
    text-align: left;
}

.price-table th {
    font-weight: normal;
    font-size: 12px;
}

.price-table td {
    font-size: 0.6rem;
}

.profile a {
    color: #6f3a2e;
}

.settings {
    margin-top: 100px;
    border-top: 1px solid #70392e;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    background: transparent;
    border-bottom: 1px solid #70392e;
    cursor: pointer;
}

.setting-item:hover {
    background-color: rgba(112, 57, 46, 0.1);
}

.setting-item span {
    font-size: 1rem;
}

.setting-item button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease; /* Smooth transition effect */
}

.setting-item button:hover {
    outline: none !important;
}

.version-info {
    margin-top: 20px;
    font-size: 0.8rem;
}

.arrow-right {
    width: 10px;
    height: auto;
}

.improvement {
    margin-top: 20px;
}

.improvement-item {
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid #70392e;
    background: transparent;
    cursor: pointer;
    color: #6f3a2e;
    text-align: left;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 0.8rem;
}

.improvement-item:hover {
    background-color: rgba(112, 57, 46, 0.1);
}

.improvement-item.selected {
    background-color: #70392e;
    color: #c3b1a6;
}

textarea {
    border: none;
    border: 1px solid #70392e;
    background: transparent;
    color: #6f3a2e;
    width: 100%;
    margin-top: 20px;
    resize: none; 
    box-sizing: border-box; 
    padding: 10px; 
    font-family: inherit; 
    font-size: inherit; 
    border-radius: 10px;
}

/* Placeholder styling for textarea */
textarea::placeholder {
    color: grey;
}

.clickable {
    cursor: pointer;
}

.star-container {
    display: inline-block;
}

.star-icon {
    width: 50px;
    margin-right: 5px;
}

/* Add this CSS to your stylesheets */

.form-group {
    position: relative;
}

.form-label {
    top: 0;
    left: 0;
    font-size: 0.75em;
    color: #6f3a2e;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
    margin-bottom: 0;
    display: block;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0;
    border: none;
    border-bottom: 1px solid #6f3a2e;
    background-color: transparent;
    font-size: 1em;
    color: #6f3a2e;
    outline: none;
}

.input-message {
    border: 1px solid #6f3a2e !important;
}

.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('/img/icons/Down Arrow.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1em;
    padding-right: 1.5em; /* To provide space for the arrow */
}

.form-input:focus,
.form-select:focus {
    border-bottom-color: #6f3a2e;
}

.tab-menu {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
    background-color: transparent;
}

.tab-button {
    padding: 0.75em 1.5em;
    cursor: pointer;
    background-color: transparent;
    color: #6f3a2e;
    border: none;
    outline: none !important;
    transition: background-color 0.3s ease-in-out;
    flex: 1; /* Equal width buttons */
}

.tab-button.active {
    border-bottom: 3px solid #6f3a2e;
    outline: none !important;
}

.button:focus {
    outline: none !important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.short-line {
    border-bottom: 0.5rem solid #6f3a2e;
    width: 20%;
    border-radius: 0.5rem;
}

.forgot-password {
    text-align: right;
    margin-top: 0.5em;
}

.forgot-password a {
    font-size: 0.875em;
    color: #6f3a2e;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

/* Styles for the proceed as guest link */
.proceed-as-guest {
    text-align: center;
    margin-top: 1em;
}

.proceed-as-guest a {
    font-size: 1em;
    color: #6f3a2e;
    text-decoration: underline;
    background-color: transparent;
    transition: color 0.2s ease-in-out;
}

.proceed-as-guest a:hover {
    color: #6f3a2e;
}

/* Style for checkbox */
.form-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1em;
    height: 1em;
    border: 2px solid #6f3a2e;
    border-radius: 3px;
    cursor: pointer;
    outline: none;
    margin-right: 0.5em;
    position: relative;
}

.form-checkbox:checked {
    background-color: #6f3a2e;
    border-color: #6f3a2e;
    color: #6f3a2e;
}

.form-checkbox:checked::before {
    content: '✓';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    text-align: center;
    line-height: 1em;
    color: transparent;
}

/* Style for the terms label */
.form-checkbox-label {
    font-size: 0.875em;
    color: #6f3a2e;
    display: inline;
}

/* Style for links in the terms label */
.form-checkbox-label a {
    text-decoration: underline;
    color: #6f3a2e;
    transition: color 0.2s ease-in-out;
}

.form-checkbox-label a:hover {
    color: #6f3a2e;
}

.button:disabled {
    background-color: #6f3a2e;
    cursor: not-allowed;
}

.mobile-code {
    flex: 0 0 20%; 
    padding: 0 0.5rem;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: right 0.5em center;
    appearance: none; 
    outline: none;
}

.start-container {
    position: fixed;
    bottom: -350px;
    left: 0;
    right: 0;
    transition: bottom 1s ease-out;
    will-change: bottom;
}


.visible {
    bottom: 0;
}

.input-container {
    position: relative; 
    display: inline-block;
}

.verified-span {
    position: absolute; 
    top: 20%; 
    right: 0px; 
    transform: translateY(-50%); 
    background-color: #6f3a2e; /
    color: #c3b1a6; 
    padding: 0px 5px;
    border-radius: 5px; 
    font-size: 0.75em; 
    white-space: nowrap; 
}

/* SUCCESS MESSAGE DURING LOGIN */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999; 
    transition: opacity 0.5s ease-out; 
}

.success-message {
    background-color: #c3b1a6; 
    color: #6f3a2e; 
    border: 1px solid #c3e6cb; 
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    opacity: 1;
}

.success-overlay.show {
    display: flex; 
    opacity: 1; 
}

.success-overlay.fade-out {
    opacity: 0; 
}

.alert.alert-success {
    position: absolute;
    width: 100%;
}


/* FAQ SECTION */
.faq-answer {
    display: none;
    background-color: #b3a298;
}

.arrow-down-faq {
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
    height: 10px; 
}

.arrow-right-faq {
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
    height: 16px; 
}

.arrow-icon-fqa.rotate {
    transform: translateY(-50%) rotate(90deg);
}

/* MODAL CHANGE PROFILE IMG */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #70392e;
    margin: 15% auto;
    border: 1px solid #70392e;
    width: 80%;
    max-width: 500px;
    border-radius: 4px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #c3b1a6 !important;
}

.modal-header h5 {
    color: #c3b1a6;
}

.close {
    color: #c3b1a6;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #c3b1a6;
    text-decoration: none;
    cursor: pointer;
}

.file-input {
    display: block;
    margin: 20px 0;
}

.btn-primary {
    background-color: #c3b1a6;
    color: #70392e;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #d1c2bd;
}
