.user_card {
	height: 400px;
	width: 350px;
	margin-top: auto;
	margin-bottom: auto;
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 10px;
	/*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%;
	padding: 1px;
	text-align: center;
}
.brand_logo {			
	width: 180px;
	border-radius: 50%;
}
.form_container {
	margin-top: 100px;
}
.login_btn {
	width: 100%;
	background: #1a3337 !important;
	color: white !important;
}
.login_btn:focus {
	box-shadow: none !important;
	outline: 0px !important;
}
.login_container {
	padding: 0 2rem;
}
.input-group-text {
	background: #1a3337 !important;
	color: white !important;
	border: 0 !important;
	border-radius: 0.25rem 0 0 0.25rem !important;
	padding: 12px;
}
.input_user,
.input_pass:focus {
	box-shadow: none !important;
	outline: 0px !important;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
	background-color: #cc1a3337 !important;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #eef1fb, #dfe5f5, #d2d8ee);
  height: 100vh;
  font-family: 'Roboto', sans-serif;
}

#ios-install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #ddd;
  padding: 10px 15px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.ios-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.ios-banner-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 8px;
}

.ios-banner-text {
  flex-grow: 1;
  font-size: 14px;
  color: #333;
}

.ios-banner-close {
  background: none;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #888;
}

.config-bootbox-warning .modal-header .btn-close,
.config-bootbox-warning .modal-header .close {
	margin-left: auto;
}
.user_card {
  width: 350px;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center; /* garante centralização interna */
  padding: 20px;

 /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;*/
}


.brand_logo_container {
  position: absolute;
  top: -90px;
  /* remove left + transform, usa flex do parent */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  width: 180px;
  border-radius: 50%;
  background-color: white;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10;
}

.brand_logo {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.form_container {
  margin-top: 120px;
  width: 100%; /* garante que o form ocupe toda a largura do card */
}

section.vh-100 {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .brand_logo_container {
    height: 180px;
    width: 180px;
    top: -60px;
  }
}

.input_user,
.input_pass {
  border: 1px solid #e0cba8;
  border-radius: 6px;
}

