:root {
    --font-default: 'Amasis MT Std', sans-serif;
    --font-primary: 'Amasis MT Std', sans-serif;
    --font-secondary: 'Amasis MT Std', sans-serif;
  }
  
  /* Colors */
  :root {
    --color-default: #0a0d13;
    --color-primary: #38b6ff;
    --color-secondary: #04045A;
  }
  
  /* Smooth scroll behavior */
  :root {
    scroll-behavior: smooth;
  } 
  

body{
    /*background-image: url('../img/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    overflow-y: auto;
    height:100vh;*/
    font-family: var(--font-default);
    color: var(--color-secondary);
}

.hero { 
    position: relative; 
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    /*background-color: rgb(125 124 124 / 25%);*/
    /*background: rgba(76, 175, 80, 0.3);*/
    background-color:#fff;
    opacity:0.5;
}

.btn-primary {
    color: #fff;
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.content{
    margin-top: 30px;
    text-align: center;
}
.head-logo{
    color:white;
    font-weight: bold;
    text-align: center;
    padding: 20px 0px 20px 0px;
}
.logo{
    width: 280px;
}
.content-box{
    /*background-color: white;*/
    padding:20px;
    margin: 35px 0px 35px 0px;
    /*border-radius: 20px;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);*/
}
.content-box1{
    /*background-color: white;
    padding:20px;
    margin: 35px 0px 35px 0px;
    border-radius: 20px;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);*/
    top: 50%;
    left: 50%;
    position: absolute;
    width:70%;
    transform: translate(-50%, -50%);
}
.headline{
    text-align: center;
    color: var(--color-secondary);
    font-family: var(--font-default);;
}
.headline p{
    font-size: 35px;
    font-weight: bold;
}
.doctor a{
    text-decoration: none;
    color: black;
}
.volunteer a{
    text-decoration: none;
    color: black;
}
.already-user{
    color: var(--color-secondary);
    margin-top: 40px;
}
.already-user span{
    color: var(--color-secondary);
}

.six-digit{
    width: 300px;
    height: 300px;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    margin: auto;
    border: 10px solid var(--color-secondary);
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
}
.digit-code{
    font-size: 22px;
}
.primary{
    color:var(--color-primary);
}

.secondary{
    color:var(--color-secondary);
}
.default{
    color: var(--color-default);
}
.thank-you{
    font-size:34px;
    font-weight:bold;
    
}
@media(max-width:767px){
    .doctor{
        margin-bottom:10px;
    }
    .content-box1 p{
        font-size: 34px;
    }
    .headline p {
        font-size: 22px;
        font-weight: bold;
    }
    .six-digit{
        width: 180px;
        height: 180px;
        align-items: center;
        background-color: #FFFFFF;
        border-radius: 50%;
        text-align: center;
        margin: auto;
        border: 5px solid var(--color-secondary);
        justify-content: center;
        align-items: center;
        text-align: center;
        display: flex;
    }
    .digit-code{
     font-size: 16px;
     line-height:18px;
    }
    .display-3 {
        font-size: 2rem;
        font-weight: 300;
        
    }
    .h1, h1 {
        font-size: 1.5rem;
        color: var(--color-secondary);
    }
    .thank-you{
    font-size:24px !important;
    font-weight:bold;
    }
}

.ui-dialog-titlebar.ui-corner-all.ui-widget-header.ui-helper-clearfix.ui-draggable-handle {
    color: white;
    background: var(--color-secondary);
}
button.ui-button.ui-corner-all.ui-widget {
    padding: 5px;
    background: var(--color-secondary);
    color: white;
}

.ui-dialog-titlebar-close {
   display: none;
}