@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  transition: all .2s cubic-bezier(.25,.46,.45,.94);
  justify-content: center;
  /*align-items: center;
  min-height: 100vh;*/
/*  background: url(../images/bg.jpg) no-repeat;*/
  background-size: cover;
  background-position: center;
}

.background {
  /* background-image: url(../images/admin.jpg); */
  height: auto;
}

.bg-transparent{
    background: rgba(255, 166, 0, 0.1) !important;
}

.bg-transparent-user{
  background: rgba(255, 255, 255, 0.912) !important;

}

.button-style{
  width: 100% !important;
  background: #6495ED !important;
  border: #6495ED !important;
  height: 46px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700 !important;
  transition: all .2s cubic-bezier(.25,.46,.45,.94);
  border-radius: .28rem;
}
.button-style:hover{
  background: #6B8E23 !important;
  border: #6495ED !important;
}

.link-style{
  color: #6495ED !important;
  text-decoration: none;
}

.link-style:hover{
  color: #6B8E23;
}


/* for removing bootstrap border on focous */

/*.shadow-remove:focus {
  border: 10px !important;
  box-shadow: none !important;
}*/

.form-outline input:focus {
  border-bottom: 1px solid green;
 /* border-top: 0px;
  border-left: 0px;
  border-right: 0px;*/
  border-radius: .28rem;
  transition: 0.4s ease-in-out;
  box-shadow: none;
}

.outline-remove:focus {
  outline: none !important;
  box-shadow: none !important;
}

/*.borderradius-remove{
  border-radius: 0px !important;
}*/

.addshadow{
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
}

