* {
    font-family: "Poppins", sans-serif;
}

/* Auth Pages */
.welcomeContainer {
    background-color: #F4F5FF;
}

.mainBlueText {
    color: #488AEC;
}

.maingrayText {
    color: #4F6280;
}

.signinBTn {
    background: linear-gradient(110.35deg, #488AEC 16.67%, #7886FF 63.53%);
}

.mainBlueBorder {
    border: 1px solid #DDEBFF;
}

.darkBlueBorder {
    border: 1.5px solid #DDEBFF;
}

.darkBlueBorderBottom {
    border-bottom: 1px solid #DDEBFF;
}

.darkMainBlueBorder {
    border: 1px solid #488AEC;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

/* Create a custom checkbox */
.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 16px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    /* Default background color */
    border: 2px solid #1b75bc33;
    border-radius: 3px;
}

/* Style the checkmark when checked */
.custom-checkbox input[type="checkbox"]:checked+.checkmark {
    background-color: #488AEC;
    /* Background color when checked */
}

/* Style the tick mark */
.custom-checkbox input[type="checkbox"]:checked+.checkmark::after {
    content: "";
    position: absolute;
    display: block;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    /* Tick color */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


/* dashboard */
.menuBarBG {
    background: linear-gradient(110.35deg, #488AEC 16.67%, #7886FF 63.53%);
    backdrop-filter: blur(15px);
    box-shadow: 0px 4px 30px 0px #4590FF1A;
}

.headerShadow {
    box-shadow: 0px 2px 24px 0px #00000014;
}


.dashboardBG {
    background-image: url("../images/dashboardBG.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 50px;
    min-height: calc(100vh - 150px);
}

.dashboardHeight {
    min-height: calc(100vh - 150px);
}

/* step one */
.stepsBG {
    background: linear-gradient(110.35deg, #488AEC 16.67%, #7886FF 63.53%);
}

.stepsBorder {
    border: 2px solid #BED9FF;
}

@media (min-width: 768px) {
    .stepHeight {
        min-height: calc(100vh - 220px);
    }
}

@media (max-width: 767px) {
    .stepHeight {
        height: 100%;
    }
}


.cardShadow {
    backdrop-filter: blur(15px);
    box-shadow: 0px 4px 30px 0px #4590FF1A;
}


/* Hide the default checkbox */
.round-checkbox-input {
    display: none;
}

/* Create the custom rounded checkbox */
.round-checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

/* Outer circle */
.round-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #DDEBFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Add checkmark when checked */
.round-checkbox-input:checked+.round-checkbox {
    background-color: #5CB84D;
    border-color: #5CB84D;
}

/* Checkmark SVG */
.round-checkbox-input:checked+.round-checkbox::after {
    content: "";
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
}


.stepTwoBtnBorder {
    border: 2px solid #488AEC;
}

.password-eye{
    cursor: pointer;
}

.uni-cursor-pointer{
    cursor: pointer;
}
.eye-icon{
    color: #727FB680;
}
.validations{
    color: red;
}

.profile-preview {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}