*{
    font-family: 'Poppins', sans-serif;
}

.form-control-user{
    border-radius: 20px;
    margin-top: 10px;
    height: 45px;
}

.btn-user{
    width: 40%;
    border-radius: 20px;
    background-color: #D61E1E;
    outline: none;
    border: none;
}


.issue-btn{
    margin-top: 15px; 
    width: 100%;
    height: 45px;
}

.save-btn{
    width: 200px;
    border-radius: 20px;
    background-color: #D61E1E;
    outline: none;
    border: none;
    margin-top: 15px; 
    height: 45px;
}

.profile-img{
    max-width: 150px;
    max-height: 150px;
    min-width: 150px;
    min-height: 150px;
    margin-top: 20px;


}

.black-color{
    color: black;
}

footer {
    position:absolute;
    bottom:0;
    width:100%;
    height:30px;   /* Height of the footer */
    background:rgb(225, 245, 255);
 }
 

 .prudential-blue{
    background-color: #0a4595;
 }

 .main-color{
  background-color: #e9e9e9;
 }

 .box-shadow{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
 }




 /* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  .admin-dashboard-margin{
    margin: 8px;
  }



  .card-b {
    margin-top: 2em;
    padding: 1.5em 0.5em 0.5em;
    border-radius: 2em;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .card-b img {
    width: 65%;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  .card-b .card-title {
    font-weight: 700;
    font-size: 1.5em;
  }
  .card-b .btn {
    border-radius: 2em;
    background-color: teal;
    color: #ffffff;
    padding: 0.5em 1.5em;
  }
  .card-b .btn:hover {
    background-color: rgba(0, 128, 128, 0.7);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }