:root {
    --theme-primary: #2953e1;
    --theme-secondary: #f0f5ff;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background: #ffffff;
    overflow-x: hidden;
}

/* Footer for Home */

.footer-section {
    background: #020617;
    padding: 5rem 0 3rem;
    color: #94a3b8;
}

.footer-logo {
    width: 32px;
    height: 32px;
    background: #4f46e5;
    border-radius: .4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.footer-links li {
    margin-bottom: .75rem;
}

.footer-links a {
    text-decoration: none;
    color: #94a3b8;
    transition: color .2s ease;
}

.footer-links a:hover,
.footer-socials a:hover,
.footer-bottom a:hover {
    color: white;
}

.footer-socials a {
    color: #94a3b8;
    transition: color .2s ease;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: color .2s ease;
}

/* Footer for Home End */

/* Field */
.field_vendor {
    position: relative;
    border: 1px solid #efefef;
    border-radius: 15px;
    transition: all 0.2s ease-in-out;
    display: flex;
}

.field_vendor input {
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    transition: all 0.5s ease-in-out;
}

.field_vendor label {
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 12px;
    transition: all 0.2s ease-in-out;
}

.label-head {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.label-head a {
    text-decoration: none;
    color: #222acf;
}

.field_vendor .input-hint {
    position: absolute;
    left: 2px;
    top: 45px;
    font-size: 12px;
    margin-bottom: 8px;
}

.field_vendor input:focus + label,
.field_vendor input:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 12px;
    color: #0d6efd;
    background-color: white;
}

.field_vendor:focus-within {
    border-color: #0d6efd;
}

.field_vendor input::file-selector-button {
  display: none;
}

.field_vendor .field_vendor_file_inp {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    outline: none;
    background-color: #0d6efd;
    border: transparent;
    font-size: 12px;
    color: white;
    padding: 0 1em;
}

/* Field */

/* Regiter & Onboard */

.register-tab-holder {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rth-item {
    display:flex;
    align-items:center;
    gap: 8px;
}

.rth-item i,
.rth-item .rth-title {
    font-size: 15px;
    font-weight: 600;
}

.rth-item.muted i,
.rth-item.muted .rth-title {
    color: #818181ff !important;
    font-weight: 400;
}

.tos-text {
    color: #818181ff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
}

.tos-text a {
    text-decoration: none;
}

.rth-prime-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 2.5rem;
}

.phone-verify-btn {
    background: transparent;
    color: #222acf;
    border: none;
    outline: none;
    font-size: 12px;
    font-weight: 500;
    padding: 0 20px;
}

.bg-benefits {
    background: #eeefffff;
}

.mhh {
    min-height: 60vh;
}

.benefits-section {
    padding: 6rem 0;
}

.benefit-card {
    background: rgba(248,250,252,.6);
    border: 1px solid #f1f5f9;
    padding: 2rem;
    border-radius: 1.25rem;
    transition: all .3s ease;
    height: 100%;
}

.benefit-card:hover {
    background: #fff;
    box-shadow: 0 25px 50px rgba(79,70,229,.12);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: #e0e7ff;
    color: var(--theme-primary);
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all .3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--theme-primary);
    color: #fff;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .75rem;
}

.benefit-text {
    color: #64748b;
    line-height: 1.6;
}

/* Register & Onboard */

/* Signature Canvas */

.signature-modal {
    border-radius: 14px;
    padding: 16px;
    background: #fff;
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.close-btn {
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

.signature-wrapper {
    border: 2px dashed #ddd;
    border-radius: 10px;
    margin: 16px 0;
    height: 200px;
}

#signatureCanvas {
    width: 100%;
    height: 100%;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
}

.btn-clear {
    background: #f3f4f6;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
}

.btn-save {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
}

/* Signature Canvas End */

/* Media Quries */

@media (min-width: 992px) {
    #toast-container {
        bottom: 40px;
    }
}
