@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');


:root {
  --primary-clr-50: #62a5501e;
  --primary-clr: #63a550;
  --primary-clr-hover: #5ba546;
  --primary-border-subtle: #b1fd9c;
}


body{
  font-family: "PT Sans Narrow", sans-serif;
  background-color: #f9fafc;
}

/* bootstrap resetter */
.form-control,
.btn,
.form-select {
  /* padding-block: .75rem; */
  box-shadow: 0px 1px 2px 0px var(--primary-clr-50)
}

.btn-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem var(--primary-clr-50)
}

.form-select:focus,
.form-control:focus {
  border-color: var(--primary-clr);
  box-shadow: 0 0 0 0.25rem var(--primary-clr-50)
}

/* .btn{
  box-shadow: 0px 4px 13.1px 0px rgba(0, 0, 0, 0.25);
} */

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary-clr);
  --bs-btn-border-color: var(--primary-clr);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary-clr-hover);
  --bs-btn-hover-border-color: var(--primary-clr);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-clr-hover);
  --bs-btn-active-border-color: var(--primary-clr-hover);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--primary-clr);
  --bs-btn-disabled-border-color: var(--primary-clr);
  line-height: 1.4;
}

.text-primary{
  color: var(--primary-clr) !important;
}


/* login page */
.login-from-container{
  max-width: 450px;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-inline: auto;
  
}

.login-from-container form{
  flex: 1;
  border: 1px solid #ccc;
  padding: 1.5rem;
  border-radius: .5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.form-header{
  text-align: center;
}


.bg-navbar{
  background-color: #f9fafc;
  border-bottom: 1px solid #ccc;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.nav-link{
  font-weight: 700 !important;
  transition: all 150ms ease-in;
}


.nav-link:hover,
.nav-link.active{
  
  color: #5ba546 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-menu{
  position: absolute;
  z-index: 100;
  left: .5rem;
  width: 40px;
  cursor: pointer;
  align-items: center;
  padding: 0 .5rem;
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border: none;
  height: 24px;
}

@media (min-width: 991px){
  .btn-menu{
    display: none;
 
  }
}

.navicon-line {
  display: block;
  background-color: #63a550;
  border-radius: 2px;
  height: 4px;
  width: 100%;
  margin-bottom: 4px;
}

.navbar .container-fluid{
  position: relative;
  justify-content: center;
  width: 100%;
}

.only-lg-screen{
  display: block;
}

.only-sm-screen{
  display: none;
}

@media (max-width: 991px){
  .only-lg-screen{
    display: none;
  }
  
  .only-sm-screen{
    display: block;
  }
}

/* ADD NEW FORM */
.main{
  margin-block: 2rem;
}

.application-form{
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid #ccc;
  padding: 1.5rem;
  border-radius: .5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.signature-wrapper{
  position: relative;
  width: 100%;
  height: 200px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.signature-wrapper > img{
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  box-shadow: 0px 1px 2px 0px var(--primary-clr-50);
}
  
.signature-pad {
  cursor: url('assets/pen.svg.svg') 1 26, pointer;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  color: #000;
  box-shadow: 0px 1px 2px 0px var(--primary-clr-50);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height:200px;
}


#clearButton {
  position: absolute;
  right: 0;
  top:  0;
  z-index: 100;
}

.btn-actions{
  box-shadow: none;
  background-color: #fff;
  margin-inline: auto;
  border: none;
  outline: none;
}

.btn-actions:hover{
  background-color: #dee2e6;
}
.dropdown-item-danger:hover{
  background-color: var(--bs-danger);
  color: #fff;
}

table thead tr th{
  background-color: #dee2e6 !important;
}

/* modal */
.img-thumbnail {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.fab:before {
  position: relative;
  top: 13px;
}

.social-container {
  cursor: pointer;
  font-size: small;
  text-align: center;
}

.modal-footer {
  display: block;
}



