.forgot-password-container {
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.forgot-password-container h3 {
    margin-bottom: 20px;
}

.forgot-password-container .btn {
    background: #6e8efb;
    border: none;
}

.forgot-password-container .btn:hover {
    background: #5a75d8;
}

.forgot-password-container .form-text {
    color: #6c757d;
}

.err {
    color: red;
    font-style: italic;
    font-size: 12px;
}

body,
html {
    width: 100%;
    min-height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../../img/gallery/auth-bg.png');
    background-size: cover;
    /* Maintain aspect ratio and cover entire viewport */
    background-repeat: no-repeat;
    background-position: top center;
    /* Center the background image */
}

.container-auth {
    background-color: rgba(0, 0, 0, 0.6);
    /* Black with transparency */
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.sign-in-box {
    width: 25em;
    margin: auto;
    color: #fff;
    /* White text */
}

.sign-in-box h2 {
    margin-bottom: 30px;
    text-align: center;
    color: #d2b48c;
    /* Coffee color for headings */
}

.sign-in-box h1 {
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
    color: #d2b48c;
    /* Coffee color for headings */
}

.input-group {
    margin-bottom: 30px;
    height: 80px;
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    color: #d2b48c;
}

.input-group input {
    width: calc(100% - 20px);
    height: 100%;
    font-size: 20px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    outline: none;
    background-color: #333;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0px 0px 0px 20px;
}

.password-wrapper {
    position: relative;
    height: 60px;
}

.form-input {
    position: relative;
    height: 60px;
    width: 100%;
}

button.sign {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 25px;
    background: var(--gold, linear-gradient(90deg, #BD8322 0%, #928B6A 51.5%, #845A17 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    /* Coffee color for button.sign */
    color: #fff;
    /* Dark text on button.sign */
    font-size: 18px;
    cursor: pointer;
    transition: .3s ease-out;
}

button.sign:hover {
    background-color: #c19a6b;
    transition: .3s ease-in;
    background: var(--gold, linear-gradient(90deg, #845A17 0%, #928B6A 51.5%, #BD8322 100%));
    transform: translateY(-2px);
    /* Slightly darker coffee color on hover */
}

button.sign:active {
    transform: translateY(2px);
    /* Slightly darker coffee color on hover */
}

.btn-sign {
    margin-top: 80px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.password-wrapper {}

#togglePassword,
#togglePassword2 {
    position: absolute;
    right: 8px;
    bottom: 13px;
    font-size: 20px;
}

.text-center {
    text-align: center;
}

.input-group input[type="password"],
.input-group input[type="text"] {
    border: none;
    border-radius: 8px;
    outline: none;
    background-color: #333;
    /* Dark background for inputs */
    color: #fff;
    /* White text in inputs */
}

.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #aa670d;
    cursor: pointer;
}

.err {
    position: absolute;
    bottom: -25px;
    left: 10px;
    color: red;
    font-style: italic;
    font-size: 16px;
}

.section-auth {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.nav-auth {
    border-radius: 0px 0px 12px 12px;
    border-bottom: 2px solid var(--gold, #BD8322);
    background: var(--dark-green, linear-gradient(90deg, #0A0A0A 8.69%, #062222 23.3%, #0C0E0D 36.08%, #0C0F0E 88.59%, #062222 100%));
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
}

.logo-auth {
    width: 50px;
    height: 50px;
    position: relative;
    display: block;
    margin-left: 20px;
}

.img-full-cover {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.img-full-contain {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.title-white20-monserat {
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 0;
    margin: 0;
}

.flex-start {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: start;
}

.flex-center {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

.title-nav {
    border-left: 2px solid #fff;
    margin-left: 20px;
    padding-left: 20px;
}

.title-nav p {
    line-height: 100%;
}

.link-white14-monserat {
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.menu-nav {
    margin-right: 20px;
}

.title-white12-monserat {
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.link-white16-monserat {
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.reg-wrap {
    margin-top: 80px;
}

.option-wrapper {
    /* background: lime; */
    min-height: 13em;
    border: 1px solid #bbb;
    border-radius: 8px;
    margin-bottom: 25px;
    padding: 20px 20px 20px 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}

.table-opt {
    margin-top: 15px;
}

.thead-opt {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.thead-opt .th-opt {
    background: #bbb;
    border: 1px solid #fff;
    padding: 10px 20px;
    min-width: 120px;
    min-height: 20px;
    color: #333;
}

.tr-opt {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.tr-opt:first-child {
    margin-top: 10px;
}

.td-opt .form_line_wrapper .form_container small {
    left: 0;
}

.td-opt.name .form_line_wrapper .form_container {
    width: 160px;
    margin-right: 10px;
}

.td-opt.price .form_line_wrapper .form_container {
    width: 150px;
    margin-right: 10px;
}

.td-opt.action .form_line_wrapper .form_container {
    width: 5em;
}

.th-opt a i {
    color: #333;
    font-size: 18px;
}

.td-opt.action {
    background: #fff;
    height: 40px;
    border-radius: 10px;
    width: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    margin-left: 10px;
}

.td-opt.action a i {
    color: #333;
    font-size: 25px;
}

.menu-images {
    /* background: lime; */
    min-height: 37em;
    border: 1px solid #bbb;
    border-radius: 8px;
    margin-bottom: 25px;
    width: 35em;
    position: relative;
}

.img-wrp {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.img-view {
    height: 160px;
    width: 160px;
    margin: 10px;
    position: relative;
    z-index: 2;
}

.img-view img {
    border-radius: 10px !important;
}

.img-view a {
    display: block;
    /* background: lime; */
    position: absolute;
    top: 6px;
    right: 6px;
    text-decoration: none;
    z-index: 2;
}

.img-view a i {
    color: #fff;
    font-size: 20px;
}

input#input-gallery {
    position: absolute;
    background: lime;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}

.drag-info {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px dashed;
    padding: 27px;
    border-radius: 10px;
    z-index: 0;
}

.drag-info h1 {
    font-size: 25px;
    font-weight: 400;
}

.table-link {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}

.theaderr-link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.theaderr-link .th-link {
    min-width: 15em;
    height: 40px;
    font-size: 18px;
    border: 1px solid #fff;
    padding: 20px 0px 0px 20px;
    text-align: left;
}

.theaderr-link .th-link:first-child {
    min-width: 3em;
}

.theaderr-link .th-link:last-child {
    min-width: 5em;
}

.theaderr-link .th-link:nth-child(2) {
    min-width: 25em;
    /* Style for the second child */
}

.tbody-link {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}

.tbody-link .tr-link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

.tbody-link .tr-link .td-link {
    width: 15em;
    color: #fff;
    font-size: 18px;
    border: 1px solid #bbb;
    padding: 20px 0px 0px 20px;
}

.tbody-link .tr-link .td-link p {
    margin: 5px;
}

.tbody-link .tr-link .td-link:first-child {
    width: 3em;
}

.tbody-link .tr-link .td-link:nth-child(2) {
    width: 25em;
}

.tbody-link .tr-link .td-link:last-child {
    width: 5em;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 0px 10px 0px 10px;
}

.select-promo {
    background: #fff;
    width: 30%;
    height: 30px;
    position: relative;
}

.select-promo select {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.promo-containre {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.promo-containre:first-child {
    margin-top: 10px;
}

.promo-item {
    background: #fff;
    color: #333;
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
    margin-right: 10px;
    width: 50px;
    text-align: center;
}

.promo-form {
    position: relative;
    background: #fff;
    height: 30px;
    width: 70px;
    margin-right: 20px;
}

.promo-form input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-left: 10px;
}

.promo-form input::placeholder {
    font-size: 10px;
}

.check-option {
    width: 2em;
    height: 2em;
}

.promo-form.error input {
    border: 1px solid red;
}

.errprice {
    position: absolute;
    bottom: -15px;
    left: 0px;
    color: red;
    font-style: italic;
    font-size: 8px;
}

.promo-containre {
    display: none;
}

.banner-create {}

.banner-create h4 {
    font-size: 20px;
    font-weight: 400;
}

.banner-admin {
    border: 1px solid #fff;
    border-radius: 10px;
    height: 25em;
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}

.banner-admin input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
    cursor: pointer;
}