html, body {
    height: 100%;
}

body {
    background-image: url('../../images/brandexpand/bg_image.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

:root {
    --primary-dark-blue-color: #0C194C;
    --primary-blue-color: rgba(33, 52, 224);
    --secundary-blue-color: #3CE6E6;
    --link-color: #929DFB;
    --bs-body-font-family: 'Jost', sans-serif;
}

[x-cloak] {
    display: none;
}

.rounded-6 {
    border-radius: 40px;
}

.shadow-xl {
    box-shadow: 0px 24px 8px rgba(0, 0, 0, 0.25);
}

.form-control {
    font-size: 19px;
    min-height: 56px;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .1rem rgb(54, 207, 207);
}

.custom-gradient-1 {
    background: linear-gradient(90.4deg, #7C67FC 68.74%, #FF84C6 102.39%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.custom-gradient-2 {
    background: linear-gradient(90.73deg, #9483FF 51.72%, #FF9BD1 73%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.custom-invalid-feedback {
    color: #F86B95;
}

.custom-text-input.error input {
    box-shadow: 0 0 0 .1rem rgb(248, 107, 149);
}

.custom-checkbox-input input {
    flex-shrink: 0;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    width: 1.8rem;
    height: 1.8rem;
    border: 0.16rem solid rgba(3, 51, 101, 0.4);
    border-radius: 0.5rem;
    background-color: #fff;
    transition: background-color 0.4s, border-color 0.4s;
}

.custom-checkbox-input input:after {
    content: "";
    display: inline-block;
    height: 0.7rem;
    width: 0.4rem;
    border-bottom: 0.2rem solid #fff;
    border-right: 0.2rem solid #fff;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.custom-checkbox-input input:checked {
    background-color: #3766DF;
    border-color: #3766DF;
}

.custom-checkbox-input input:checked:after {
    opacity: 1;
    visibility: visible;
}

.custom-bg-blue {
    background: var(--primary-blue-color);
}

.su-free-plan-title {
    background: linear-gradient(82.54deg, #FCA079 33.33%, #FF8EB7 66.8%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.su-premium-plan-title {
    background: linear-gradient(89.54deg, #0084FF 10.74%, #00F7FF 63.56%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.su-enterprise-plan-title {
    background: linear-gradient(88.85deg, #907EFF 25.8%, #FF83C5 78.58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.su-final-plan-price {
    background: linear-gradient(87.7deg, #9483FF 5.01%, #FF9BD1 46.07%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.custom-select-arrow:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.4rem 0.4rem 0 0.4rem;
    border-color: currentColor transparent transparent transparent;
    transition: transform 0.4s, margin 0.4s;
    transform-origin: center;
    position: absolute;
    right: 13px;
    top: 24px;
}

.custom-select-arrow.is-active:before {
    transform: rotate(-180deg);
    margin-bottom: 0.1rem;
}


.custom-select.is-active {
    box-shadow: 0 0 0 .1rem rgb(54, 207, 207);
}

.custom-select.error {
    box-shadow: 0 0 0 .1rem rgb(248, 107, 149);
}