/* @import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300); */

html,
body {
  height: 100%;
}

body {
  padding: 3em;
}

/* md and below: drop the 4em page padding. */
@media (max-width: 991.98px) {
  body {
    padding: 1em;
  }
}

/* Small viewports: login card on top, news below. */
@media (max-width: 767.98px) {
  .paper {
    margin-top: 2rem;
    height: auto !important;
  }
}
.background {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #cfd4d4; /* Fallback for old browsers */
  background: linear-gradient(
    to bottom,
    #cfd4d4 0%,
    #e6eaea 100%
  ); /* Soft gray gradient */
}
.paper {
  margin-top: 50px;
  background: #fff; /* White paper */
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #f9f9f9 100%
  ); /* Gentle gradient for texture */

  border-radius: 4px; /* Slight rounding like real paper edges */
  border: 1px solid #e0e0e0; /* Soft border for definition */

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08),
    /* Primary soft shadow */ 0 1px 3px rgba(0, 0, 0, 0.04); /* Extra soft detail shadow */
}

.user_card h1 {
  margin: 5em 0;
  margin-bottom: 50px;
  color: #111;
  font-weight: normal;
  text-align: center;
  text-shadow: 0 0px 20px #eee;
}

.user_card a {
  text-decoration: none;
  color: #ff0066;
  transition: all 0.5s ease;
  display: inline-block;
  border-bottom: 1px solid white;
}

.user_card a:hover {
  border-bottom: 1px solid black;
}

.user_card {
  width: 100%;
  margin-top: 70px;
  background: white;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.btn-primary {
  background-color: rgb(214, 148, 75);
  border-color: rgb(214, 148, 75);
  box-shadow: 0 4px 12px rgba(214, 148, 75, 0.4);
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: rgb(200, 130, 55);
  border-color: rgb(200, 130, 55);
  box-shadow: 0 6px 18px rgba(214, 148, 75, 0.5);
}

.btn-primary:active {
  background-color: rgb(185, 115, 45);
  border-color: rgb(185, 115, 45);
  box-shadow: 0 2px 6px rgba(214, 148, 75, 0.4) inset;
}
.user_card {
  margin-top: 70px;
  padding-top: 70px;

  border: 4px solid rgb(214, 148, 75);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 5px;
}

.brand_logo_container {
  position: absolute;
  height: 170px;
  width: 170px;
  top: -75px;
  border-radius: 50%;
  text-align: center;
}

.brand_logo {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border: 2px solid white;
}

.form_container {
  margin-top: 100px;
}

.login_btn {
  width: 100%;
  background: #c0392b !important;
  color: white !important;
}

.login_btn:focus {
  box-shadow: none !important;
  outline: 0px !important;
}

.login_container {
  padding: 0 2rem;
}

.input-group-text {
  background: #c0392b !important;
  color: white !important;
  border: 0 !important;
  border-radius: 0.25rem 0 0 0.25rem !important;
}

.input_user,
.input_pass:focus {
  box-shadow: none !important;
  outline: 0px !important;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #c0392b !important;
}
