﻿:root {
    --primary-color: #511972;
    --btn-primary-color: #B034D4;
    --btn-secondary-color: #451A6E;
    --text-white: #fff;
}
body {
    background-color: #fff;
}

.btn-custom {
    background: linear-gradient(to bottom, var(--btn-primary-color), var(--btn-secondary-color));
    border-color: var(--btn-secondary-color);
    transition: all 0.4s ease;
}
    .btn-custom:hover, .btn-custom:focus {
        background: linear-gradient(to top, var(--btn-primary-color), var(--btn-secondary-color));
        border-color: var(--btn-primary-color);
        transition: all 0.4s ease;
    }



.box-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: var(--text-white);
}

.page-404 h1 {
    font-size: 4rem;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid #fff;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

.custom-title {
    text-align: left;
    letter-spacing: 0px;
    color: #8066E9;
    text-transform: uppercase;
}

.form-control {
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background: var(--white) 0% 0% no-repeat padding-box;
    border: 0.41px solid var(--unnamed-color-825ad9);
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 0.4099999964237213px solid #825AD9;
    border-radius: 7px;
    opacity: 1;
}
.form-select {
    border: 0.4099999964237213px solid #825AD9;
    border-radius: 7px;
    opacity: 1;
}


.custom-label {
    color: var(--unnamed-color-5c2d91);
    text-align: left;
    letter-spacing: 0px;
    color: #5C2D91;
    opacity: 1;
}


#identityType .form-check-input {
    display: none;  Hide the original radio button 
}

#identityType .form-check-label {
    display: inline-block;
    padding: 10px 20px;
    background: var(--white) 0% 0% no-repeat padding-box;
    border: 0.41px solid var(--unnamed-color-5c2d91);
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 0.4099999964237213px solid #5C2D91;
    border-radius: 7px;
    opacity: 1;
    cursor: pointer;
    margin-right: 10px;
    color: var(--unnamed-color-5c2d91);
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
}

#identityType .form-check-inline{
    margin-right: 0px !important;
    width: 50%;
}

#identityType .form-check{
    padding-left: 0px !important;
}
#identityType .form-check-label {
    width: 100%;
}
#identityType .form-check-input:checked + .form-check-label {
    background: transparent linear-gradient(180deg, var(--unnamed-color-844bc5) 0%, #7D77FF 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #844BC5 0%, #7D77FF 100%) 0% 0% no-repeat padding-box;
    border: 0.4099999964237213px solid #00000000;
    border-radius: 7px;
    opacity: 1;
    color: #FFFFFF;
    text-align: center;
}

#identityType .form-check-label.btn:hover {
    background-color: #0056b3;
    color: white;
}

.custom-form {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding-top: 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -20px;
    padding: 30px;
}
/*.header img {
    margin-bottom: -30px;
}*/


.step-indicator {
    display: flex;
    align-items: center;
    width: 200px;
}

.step {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    pointer-events: none;
    cursor: not-allowed;
}

.step-indicator .step-icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #c2c2c2;
    font-size: 10px;
    text-align: center;
    color: #ffffff;
    position: relative;
    line-height: 50px;
    font-size: 20px;
    width: 10px;
    height: 10px;
    /* UI Properties */
    background: var(--unnamed-color-5c2d91) 0% 0% no-repeat padding-box;
    background: #7D7D7D 0% 0% no-repeat padding-box;
    opacity: 1;
    margin: 5px;
}


.step.active {
    pointer-events: auto !important;
    cursor: pointer !important;
}
.step.active .step-icon {
    background: #5C2D91 0% 0% no-repeat padding-box;
}

.indicator-line {
    width: 50%;
    height: 1px;
    background: #c2c2c2;
    flex: 1;
}

    .indicator-line.active {
        background: #5C2D91 0% 0% no-repeat padding-box;
    }
@media (max-width: 380px) {
   .btn-lg{
       font-size: 1.00rem !important;
   }
}

@media (max-width: 320px) {
    .btn-lg {
        font-size: 0.9rem !important;
    }
}


@media (max-width: 576px) {
    .custom-title{
        font-size:19px !important;
    }
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #8066E9;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: none;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

input::placeholder,
input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder {
    font-size: 1rem !important;
}


#purpleContainer {
    max-width:500px;
}