:root {
    --card-border-radius: 8px;
    --white-color: #FBB12F; /*essa cor é modificada no tema escuro para #c97d1c e isso é feito em bootstrap-dark-theme*/
}

html,
body {
  height: 100%;
}

@media screen and (max-width: 768px) {	
	html,
	body {
	  height: fit-content;
	}
}

body {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--white-color);
}

.form-signin {
  width: 100%;
  max-width: 500px;
  padding: 15px;
  margin: auto;
}

.form-signin .checkbox {
  font-weight: 400;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card-header {
	background-color: #323232;
	width: 100%;
	border-radius:  var(--card-border-radius)  var(--card-border-radius) 0 0;
}

.text-muted {
	color: #323232!important;
}

.card {
	border-radius:  var(--card-border-radius);	
}

.card-header:first-child {
    border-radius:  var(--card-border-radius)  var(--card-border-radius) 0 0;
}