:root{
    --black: #413e3e;
    --text: #666;
    --light_black: #ccc;
    --nav-bg: #e2dcdc;
    --main-bg:#f9f9f9;
    --nav-hover: #0f717e;
    --nav-border: #1b60a0;
    --email: #4d74f3;
    --white: #fff;
    --login:#088804;
    --empty:#4fff8a;
    --logout:#ce1f07;
    --guest-login:#c9c624;
    --border:2px solid #ccc;
    --box-shadow:0 .5rem 1rem #5a56561a;
    --topbar-border: 0 7px 25px #16161657;
}

*{
  scroll-behavior: smooth;
  
}

.body{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_attend{
    display: flex;
    align-items: center;
    justify-content: center;
}
.empty{
    height: 45px;
    padding-left: 10px;
    background: var(--empty);
    color: var(--black);

    display: flex;
    align-items: center;
}

 /* The switch - the box around the slider */
 .switch {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* form style starts */
  
.account_container{
    display: flex;
    width: 500px;
    padding: 10px 15px;
    align-items: center;
    justify-content: center;
    box-shadow: var(--topbar-border);
    background: var(--white);
    margin-top: 10%;
    /*min-height: 70vh;*/

}

.btn-danger{
    background: var(--logout);
    position: relative;
    padding: 3px 5px;
    text-decoration: none;

    border-radius: 10px;
}
.btn-danger ion-icon{
    color: var(--white);
    font-size: 24px;
}

.btn_back{
    width: 60px;
    height: 30px;
    font-size: 14px;
    padding: 2px 5px;
    border-radius: 10px;
    background: var(--nav-hover);
    color: var(--light_black);
    text-decoration: none;

    position: absolute;
    left: 40px;
    top: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
.btn_back ion-icon{
    font-size: 20px !important;
}

.btn_back:hover{
    color: var(--white);
}
/* Registration form styling starts */
.reg_frm_container{
    width: 85%;
    padding: 10px 15px;
    box-shadow: var(--topbar-border);
    background: var(--white);
    margin-top: 10%;    
}
.col_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form .col_box ion-icon{
    position: relative;
    padding: 15px 5px;
    color: var(--light_black); 
    font-size: 23px;  
    
    left: 23px;
}

.form .col_box input,
.form .col_box select{
    width: 85%;
    height: 50px; 
    background: transparent;
    outline: none;  
    font-size: 13px;  
    transition: .2s;
    border: none;
    padding-left: 25px;
    border-bottom: 1px solid var(--nav-bg);
}

.form .col_box select option{
    background: var(--white);
    color: var(--black);
}


/* Registration form styling ends */

.form{
    width: 100%;
    height: 100%;  

    /* border: 2px solid blue; */
}

.form h3{
    font-size: 25px;
    padding: 15px 10px;
    color: var(--nav-hover);
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
}

.form img{
    width: 60px;
    height: 60px;
    padding: 2px;
    margin: 5px;
    border: 0.8px solid var(--light_black);
    border-radius: 15px;
}

.form p{
    font-size: 16px;
    color: var(--black);
}

.form a{
    font-size: 18px;
    color: var(--nav-hover);
    text-decoration: none;
}
.form a:hover{
    color: var(--logout);
}

.form .input_box{
    width: 100%;
    height: 100%;    
    display: flex;

    margin: 6px 0;
    color: var(--logout);
}

.form form ion-icon{
    padding: 15px 5px;
    color: var(--light_black); 
    font-size: 23px;  
    
    margin-left: -28px;
}

.form form input,
.form form select{
    width: 100%;
    height: 50px; 
    background: transparent;
    outline: none;  
    font-size: 13px;  
    transition: .4s;
    border: none;
    border-bottom: 1px solid var(--nav-bg);
}

.form form select option{
    background: var(--white);
    color: var(--black);
}

.form form input:focus{
    font-size: 16px;  
    transition: .4s;
}

.form .input_box .btn{
    width: 100px;
    height: 30px; 
    border-radius: 40px;
    font-size: 17px;
    color: var(--white);
    outline: none;

    background: var(--nav-hover);
    transition: .6s;
}
.form .input_box .btn:hover{  
    margin-left: 15px; 
    background: var(--nav-hover);
    transition: .6s;
}


/* password visibility */
.see_pass,
.see_pass2{
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.see_pass:hover,
.see_pass2:hover{
    cursor: pointer;
}
.see_pass #hide,
.see_pass #show{
    font-size: 24px;
    background: transparent;
    color: var(--light_black);
}

.see_pass2 #hide2,
.see_pass2 #show2{
    font-size: 24px;
    background: transparent;
    color: var(--light_black);
}

 .see_pass #show,
 .see_pass2 #show2{
    display: none;
}

/* password visibility */

/* Message Showing */
.message{
    position: fixed;
    top:10px;
    max-width: 100%;
    margin:0 auto;
    background-color: var(--empty);
    padding:1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:1.5rem;
    z-index: 10000;
    
 }
 
 .message span{
    font-size: 20px;
    letter-spacing: 2px;
    color:var(--black);
 }

 
 .message ion-icon{
    font-size: 35px;
    cursor: pointer;
    color:var(--black);
    transition: .5s;
 }
 
 .message ion-icon:hover{
    color:var(--logout);
    transition: .5s;
 }



 textarea{
    width: 400px;
    height: 120px;
    resize: vertical;
    transition: .3s;
 }

 textarea:focus{
    font-size: 17px;
    transition: .3s;
 }
 
 .arlet_message{
     position: fixed;
     top:0;
     max-width: 100%;
     margin:0 auto;
     background-color: var(--email);
     padding:1rem;
     display: flex;
     align-items: center;
     justify-content: space-around;
     gap:1.5rem;
     z-index: 10000;
     
  }
  
  .arlet_message span{
     font-size: 20px;
     letter-spacing: 2px;
     color:var(--nav-bg);
  }
 .arlet_message ion-icon{
    font-size: 35px;
    cursor: pointer;
    color:var(--guest-login);
    transition: .5s;
 }
 .arlet_message ion-icon:hover{
    margin-right: 15px;
    transition: .5s;
 }
  /* form style ends */


.update_frm_container{
    width: 600px;
    margin:10% 40%;
    padding: 15px;
    background: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 13;
}

.update_frm_container .form_control{
    padding: 10px;
    width: 400px;
}
.update_frm_container .form_control ion-icon{
    color: var(--text);
}

.form .col_box .select{
    width: 100%;
}

/* user_update_form ends */

.col_width{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.col_width input{
    width: 160px;
    color: var(--text);
}
#date h4{
    padding: 0px 5px;
}

  /* Responsiveness starts */
 @media (max-width: 1000px)
 {
    .col_box{
        display: block;
    }

    .form .col_box input,
    .form .col_box select{
        width: 98%;
    }
 }

 @media (max-width: 600px)
 {
    .reg_frm_container{
        width: 980%;
        padding: 10px 15px;
        box-shadow: var(--topbar-border);
        background: var(--white);
        margin-top: 10%;
    }

    .col_box{
        display: block;
    }

    .form .col_box input,
    .form .col_box select{
        width: 98%;
    }
 }
 
 
 @media (max-width: 500px)
 {
     .col_width{
        margin-top: 30px;
        background: brown;
        width: 100%;
        padding: 10px 1px;
}

.col_width input{
    width: 160px;
    color: var(--white:);
}

#date h4{
    color: var(--white);
    
}

  /* form style starts */
  
.account_container{
    display: flex;
    width: 500px;
    padding: 10px 15px;
    align-items: center;
    justify-content: center;
    box-shadow: var(--topbar-border);
    background: var(--white);
    margin-top: 10%;
    min-height: 80vh;

}
 }