  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
:root{
--text-dark:#000;
--text-light: #7aa7a6;
--body-background:#ffff;
--body-foreground:#008080;
--shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
--dark-border:rgba(0,0,0,0.2);
   --soft-red: #c22a13;  
      --hover:#266b6a;
      --logo-font:"Cormorant Garamond", serif;
      --body-font: "Work Sans", sans-serif; 
      --heading-font: 'Playfair Display', serif;

}
h1,h2,h3,h4,h5,h6{
   font-family: var(--heading-font);
   letter-spacing:1px;
     
}
p,span,button,a,textarea{
   font-family: var(--body-font);
}
/* trigger setup section starts here */

.trigger-setup{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 40px;
   align-items: center;
    padding-top: 7rem;
    margin-bottom: 5rem;
}
.trigger-setup .heading h1{
            font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    padding: 2rem 0rem;
}
.trigger-setup .trigger-working,.trigger-setup .current-trigger-person,.trigger-setup .activity-status{
    width: 80%;
box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 1rem;
        border-radius: 10px;

}
.trigger-setup .trigger-working .heading h5,.trigger-setup .current-trigger-person .heading h2,.trigger-setup .activity-status h4{
    padding-top: 2rem;
            font-size: 1.7rem;
text-align: center;
    font-weight: 400;
}
.trigger-setup .trigger-working .wrapper{
    width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
padding: 2rem 0.5rem;
}
.trigger-setup .trigger-working .wrapper .function{
    position: relative;
border: 2px solid rgba(0,0,0,0.1);
    width: 250px;
    height: 170px;
    border-radius: 10px;

}
.trigger-setup .trigger-working .wrapper .function:hover{
    background-color: rgba(0, 0, 0, 0.048);
    transition-duration: 0.5s;
}
.trigger-setup .trigger-working .wrapper .function.arrow::after{
    position: absolute;
    content: "⟶";
    width: 100px;
    height: 150px;
 display: flex;
 justify-self: flex-end;
 align-self: flex-end;
 justify-content: end;
 align-items: center;
 font-size: 2rem;
 color: var(--body-foreground);
 left: 70%;
}
.trigger-setup .trigger-working .wrapper .function.small{
   
    height: 150px;
}

.trigger-setup .trigger-working .wrapper .function  .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 100%;
    padding: 1rem 0.5rem;
}
.trigger-setup .trigger-working .wrapper .function  .content .circle{
    background-color: var(--body-foreground);
    padding: 0.8rem;
    border-radius: 50%;
    color: var(--body-background);
}
.trigger-setup .trigger-working .wrapper .function  .content .text{
    display: flex;
    flex-direction: column;
align-items: center;
    gap: 7px;
}
.trigger-setup .trigger-working .wrapper .function  .content .text h3{
    font-size: 1rem;
    text-align: center;

}
.trigger-setup .trigger-working .wrapper .function  .content .text p{
text-align: center;
    
}

.trigger-setup .current-trigger-person .form form {
  align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
    padding: 2rem;
}
.trigger-setup .current-trigger-person .form form .label{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width:100%;
}
.trigger-setup .current-trigger-person .form form .label label{
font-size: 1.1rem;
}
.trigger-setup .current-trigger-person .form form .label input,.trigger-setup .current-trigger-person .form form .label select,.trigger-setup .current-trigger-person .form form .label textarea{
     height: 50px;
    border-radius: 10px;
    border: 1px solid var(--dark-border);
    padding: 0.5rem 1rem;
    font-size: 1rem;
}
.trigger-setup .current-trigger-person .form form .label input:hover,.trigger-setup .current-trigger-person .form form .label select:hover,.trigger-setup .current-trigger-person .form form .label textarea:hover{

border-color: var(--body-foreground);
}

.trigger-setup .current-trigger-person .form form .label input:focus,.trigger-setup .current-trigger-person .form form .label select:focus,.trigger-setup .current-trigger-person .form form .label textarea:focus{
    outline: none;
    border-width: 2px;
}
.trigger-setup .current-trigger-person .form form .label textarea{
  height: 120px !important;  
  resize: none;

}
.trigger-setup .current-trigger-person .form form .button{
   width: 100%;
   display: flex;
   flex-wrap: wrap;

}
.trigger-setup .current-trigger-person .form form .button button{
        cursor: pointer;
font-size: 0.9rem;
    border: none;
    border-radius: 10px;
    border: 2px solid var(--body-foreground);
        background-color: var(--body-foreground);
    color: var(--body-background);
        height: 45px;
    width: 200px;
}
 .trigger-setup .current-trigger-person .form form .button button:hover{
    background-color: var(--hover);
    transition-duration: 0.5s;
 }
 
.trigger-setup .activity-status .login-info{
    display: flex;
justify-content: space-between;
    padding: 2rem 2rem 1rem 2rem;
   gap: 15px;
   width: 100%;
      flex-wrap: wrap;
      width: 100%;
}
.trigger-setup .activity-status .login-info .last-login-div{

    display: flex;
    flex-direction: column;
    gap: 10px;

    
}
.trigger-setup .activity-status .login-info .last-login-div .last-login{
    display: flex;
    align-items: center;
    gap: 5px;
      flex-wrap: wrap;
}
.trigger-setup .activity-status .login-info .last-login-div .last-login h6{
        font-size: 1rem;
    font-weight: 600;
}
.trigger-setup .activity-status .login-info .last-login-div .last-login span{
           font-size: 1rem;
   color: var(--body-foreground);
   font-weight: bold;
}
.trigger-setup .activity-status .login-info .last-login-div .days{
        display: flex;
    align-items: center;
    gap: 10px;
      flex-wrap: wrap;
}
.trigger-setup .activity-status .login-info .last-login-div .days span{
    font-weight: bold;
}
.trigger-setup .activity-status .login-info .batch{
    display: flex;
    align-items: center;
  
} 
.trigger-setup .activity-status .login-info .batch p.active-batch{
    color: rgb(0, 90, 0);
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
      font-weight: 500;
    background-color:rgba(19, 226, 19, 0.192);

}








/* trigger setup section ends here */
@media (max-width:738px) {
    .trigger-setup .trigger-working .wrapper .function{

    width: 90%;


}
.trigger-setup .trigger-working .wrapper .function.arrow::after{
    position: absolute;
    content: "";
    width: 0;
    height: 0;


}


}
@media (max-width:484px) {
.trigger-setup .current-trigger-person .form form .label label{
font-size: 1rem;
}
.trigger-setup .current-trigger-person .form form .label input,.trigger-setup .current-trigger-person .form form .label select,.trigger-setup .current-trigger-person .form form .label textarea{

    font-size: 0.8rem;
}
.trigger-setup .activity-status .login-info{
justify-content: center;
}

}