
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');
:root{
    --main-font: "Outfit", sans-serif;
    --sec-font: "Epilogue", sans-serif;
    --main-color: #FE45FA;
    --sec-color: #FFB8FD;
    --sec-color-white: #D0D0D0;
    --theme-gradient: linear-gradient(to right, rgba(152,42,245,1) 0%, rgba(226,37,127,1) 100%);
    --theme-gradient-hover: linear-gradient(to left, rgba(152,42,245,1) 0%, rgba(226,37,127,1) 100%);
    --theme-glow: 0px 10px 60px 4px rgba(254,69,250,0.35);
    --trans-gradient: linear-gradient(to right, rgba(229,15,218,0) 0%, rgba(229,15,218,1) 50%, rgba(229,15,218,0) 100%);
    --trans-gradient-alt: linear-gradient(to bottom, rgba(229,15,218,0) 0%, rgba(229,15,218,1) 50%, rgba(229,15,218,0) 100%);

}

body {
    background-color: #000000 !important;
}

body.theme-1 {
    background-color: #ffffff !important;
    color: #000000;
}

body.theme-2 {
    background-color: #121212 !important;
    color: #f5f5f5;
}

body.theme-3 {
    background-color: #f5f5dc !important;
    color: #3e3e3e;
}

body.theme-4 {
    background-color: #001f3f !important;
    color: #ffffff;
}

body.theme-5 {
    background-color: #ffe5b4  !important;
    color: #222;
}

body[class*="theme-"] .card,
body[class*="theme-"] .modal-content {
    background-color: inherit;
    color: inherit;
    border-color: rgba(255,255,255,0.1);
}

body[class*="theme-"] .btn {
    color: inherit;
    border-color: currentColor;
}

body.theme-2 .text-muted,
body.theme-4 .text-muted {
     color: #201d1d  !important
}

html, body {

    scroll-behavior: smooth;
    overflow-x: hidden ;

}

.swal2-popup{
    background-color: #1e1e1e !important;
    color: #fff !important;
}

body{
    font-family: var(--sec-font);
}

.screen {
    min-height: 100vh;
    width: 100%;
    background: black;
}
  
.screen-inner {
    display: grid;
    place-items: center;
    min-height: 100vh;
    text-align: center;
}
  
.alert{
    padding: 6px 10px !important;
    line-height: 1;
}

.hidden {
    display: none;
}

#introScreen{
    text-align: center;
}
 
@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 600px !important;
    }

}

button{
    outline: none !important;
}


.screen h3{
    font-family: var(--main-font);
    color: #fff;
    font-size: 35px;
    
}
.link-btn{
background: transparent;
    border: none;
    color: var(--sec-color);
    width: fit-content !important;
    font-family: var(--sec-font);
}

.link-btn:hover{
    text-decoration: underline;
    }

#loginScreen button{
    width: 300px;
    justify-content: center;
}
.profile-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px dashed var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--main-color);
    margin: 20px auto;
    cursor: pointer;
    background: #000;
    background-size: cover;
    background-position: center;
  }
  .flex{
    display: flex;
    gap: 5px;
  }

  .divider-container {
    width: 100%;
    text-align: center;
    position: relative;
    margin: 15px 0;
  }
  
  
  
  .divider-text {
    padding: 0 10px;
    color: #fff;
    font-size: 14px;
    background: #000;
    position: relative;
    font-family: var(--sec-font);
    z-index: 1;
  }
.theme-btn {

    font-family: var(--sec-font);

    font-style: normal;

    font-weight: 500;

    font-size: 18px;

    border: none;
    line-height: 23px;

    color: #FFFFFF;

    background: var(--theme-gradient);

    padding: 15px 25px;

    border-radius: 15px;

    width: fit-content;

    display: inline-block;

    transition: all 200ms ease-in-out;

    display: flex
    ;
        gap: 10px;
        align-items: center;

        line-height: 15px;
}



.theme-btn:hover {

    background: var(--theme-gradient-hover);

    color: #fff !important;

    transform: scaleX(0.95) scaleY(0.95);

    box-shadow: var(--theme-glow)

}



.theme-btn-sec {

    font-family: var(--sec-font);

    font-style: normal;

    font-weight: 500;

    font-size: 18px;



    border: none;
    line-height: 23px;

    color: var(--main-color);

    background: transparent;

    border: 1px solid  var(--main-color);

    padding: 10px 25px;

    border-radius: 15px;

    width: fit-content;

    display: inline-block;

    transition: all 200ms ease-in-out;

    display: flex
    ;
        gap: 10px;
        align-items: center;

        line-height: 15px;

}


.screen label{
    color: #fff;
    font-family: var(--sec-font);
}


.theme-btn-sec:hover {

    background: #fff;

    border: 1px solid  var(--main-color);
    

    transform: scaleX(0.95) scaleY(0.95);

    box-shadow: var(--theme-glow)

}



button:focus {

    outline: 1px dotted;

    outline: none;

}


.theme-btn-black {

    font-family: var(--sec-font);

    font-style: normal;

    font-weight: 500;

    font-size: 18px;

    border: none;
    line-height: 23px;

    color: #fff;

    background: #1E1E1E;

    border: 1px solid  #fff;

    padding: 15px 25px;

    border-radius: 15px;

    width: fit-content;

    display: inline-block;

    transition: all 200ms ease-in-out;

    display: flex
    ;
        gap: 10px;
        align-items: center;

}

input.form-control{
    display: block;
    width: 100%;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 400;
    min-width: 300px;
    line-height: 2;
    color: #ffffff;
    background-color: #1E1E1E;
    background-clip: padding-box;
    border: var(--bs-border-width) solid #ffbffe;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.flatpickr-input[readonly] {
    cursor: pointer;
    min-width: 240px;
}

.habit-screen input.form-control{
    background-color: #1E1E1E !important;
}


.input-group{
    display: flex;
    flex-wrap: nowrap !important;
}

.form-control:focus {
    color: #fff !important;
    background-color: var(--bs-body-bg);
    border-color: #fe45fa !important;
    outline: 0;
    box-shadow: var(--theme-glow) !important;
}

p{
    font-size: 18px;
    color: #fff;
    font-family: var(--sec-font);
}

#introScreen button{
    width: 100%;
    justify-content: center;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.profile-circle:hover
 {
border: 2px solid var(--main-color);
box-shadow: var(--theme-glow);
}

.input-group #togglePassword{
    width: fit-content;
    text-align: center;
    justify-content: center;
    background: transparent;
    border: none;
    position: absolute;
    right: 3px;
    top: 6px;
    color: #fff;
}
input::placeholder{
    color: #fff !important;
    font-family: var(--sec-font);
    font-size: 15px;
}


#registerScreen button{
    width: 100%;
    text-align: center;
    justify-content: center;
}

#otpForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .screen-ot {
    
    width: 100%;
    height: 100vh;
    padding: 20px;
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.screen-ot h3 {
    font-family: var(--main-font);
    color: #fff;
    font-size: 35px;
}

h3.title{
    font-family: var(--main-font);
    color: #fff;
    font-size: 35px;

        }
        
        h4.cal{
            font-family: var(--main-font);
    color: #fff;
    font-size: 25px;
        }
        
         h6.sub{
    font-family: var(--main-font);
    color: var(--main-color);
    font-size: 20px;

        }
        
        

.otp-input {
            width: 45px;
            height: 45px;
    margin-bottom: 15px;
    font-weight: 400;
        padding: 10px;
    text-align: center;
    font-size: 21px;
    line-height: 1.5;
    color: #ffffff;
    background-color: #1E1E1E !important;
    background-clip: padding-box;
    border: var(--bs-border-width) solid #ffbffe;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius) !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        }

        .otp-input:focus {
            color: #fff !important;
    background-color: var(--bs-body-bg);
    border-color: #fe45fa !important;
    outline: 0;
    box-shadow: var(--theme-glow) !important;
        }
        
        
        .modal-content {
 
  background-color: #1e1e1e;
}


.ptb-3{
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 10px;
    padding-left: 10px;
}