/* === General Utilities === */
.home-btn-in-regsiter:hover {
    text-decoration: underline !important;
}

@media only screen and (max-width: 992px) {
    .home-btn-in-regsiter {
        display: none;
    }
}

.enerpize-order-txt {
    direction: ltr;
    text-align: left;
}

.fixed-btn-wts {
    display: none !important;
}

body {
    overflow-x: hidden;
}

/* === Page Overlay & Loading === */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(246, 249, 252, 0.8);
    color: #000;
    display: none;
    z-index: 9999;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
}

#loading {
    width: 50px;
    height: 50px;
    border: 3px solid rgb(246 249 252);
    border-radius: 50%;
    border-top-color: #000;
    border-right-color: #000;
    margin: 10px auto;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

.sing-btn {
    height: 60px !important;
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}

@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}

/* === Form Layout Components === */
.form-group-flex {
    display: flex;
    flex: auto;
    flex-direction: row;
    min-height: 0;
}

.form-flex-grow {
    width: 0;
    flex: auto;
    margin-inline-start: -1px;
}

.form-flex-shrink {
    flex: 0 0 110px;
    max-width: 110px;
    min-width: 110px;
    width: 110px;
}

.selectize-dropdown {
    min-width: 200px;
}

.selectize-input img,
.selectize-dropdown img {
    border-radius: 2px;
    margin-inline-end: 4px;
    width: 20px !important;
}

.form-header-tabs {
    padding-bottom: 0;
    box-shadow: none;
}

[dir=ltr] .form-header-tabs .col-xs-12,
[dir=ltr] .form-header-tabs .col-xs-6,
[dir=ltr] .form-header-tabs .col-md-6 {
    float: left;
}

[dir=rtl] .form-header-tabs .col-xs-6,
[dir=rtl] .form-header-tabs .col-xs-6,
[dir=rtl] .form-header-tabs .col-md-6 {
    float: right;
}

.form-card {
    padding-top: 0;
    box-shadow: none;
}

/* === Form Header Styles === */
.form-header {
    padding-top: 30px;
    padding-bottom: 10px;
    padding-inline-start: 61px;
    margin-bottom: 0;
}

.form-header h1 {
    font-size: 24px;
}

.form-header-tab-action {
    display: flex;
    width: 100%;
    text-align: center;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Gilroy';
    box-sizing: border-box;
    background: linear-gradient(90deg, rgb(16, 115, 254) 0%, rgb(2, 107, 255) 50%, rgb(0, 90, 217) 100%);
    color: #fff;
}

.form-header-tab-action:hover {
    color: white;
    background: linear-gradient(90deg, rgb(16, 115, 254) 0%, rgb(2, 107, 255) 85%, rgb(0, 90, 217) 100%);
}

.form-header-tab-secondary-action {
    display: flex;
    justify-content: flex-end;
    padding-top: 50px;
    padding-bottom: 10px;
    padding-inline-end: 61px;
}

/* === Responsive Media Queries === */
@media only screen and (max-width: 768px) {
    .form-header {
        padding-inline-start: 15px;
        align-items: flex-start;
    }
    
    .form-header h1 {
        font-size: 19px;
    }
    
    .form-header p {
        font-size: 12px !important;
    }
    
    .form-header-tab-secondary-action {
        padding-inline-end: 15px;
        padding-top: 30px;
    }
}