body {
  min-height: 100vh;
  background: linear-gradient(180deg, #fff7e6 0%, #ffffff 55%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login {
  width: 100%;
  padding: 24px;
}

.card-login {
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
  padding: 34px 28px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.card-login img {
  margin: 0 auto 12px;
}

.card-login h5 {
  font-weight: 800;
  color: #222;
}

.card-login .subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
}

.form-group {
  position: relative;
}

.icon-form {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #f5a400;
  z-index: 2;
}

.card-login .form-control {
  height: 52px;
  border-radius: 14px;
  border: 1px solid #eee;
  padding-left: 46px;
  font-size: 15px;
  background: #fafafa;
}

.card-login .form-control:focus {
  background: #fff;
  border-color: #ffc107;
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.16);
}

.btn-login {
  height: 52px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-link-area {
  margin-top: 18px;
  font-size: 14px;
}

.auth-link-area a,
.card-login .link {
  color: #d99000;
  font-weight: 700;
  text-decoration: none;
}

.auth-link-area a:hover,
.card-login .link:hover {
  text-decoration: underline;
}

.auth-footer-text {
  margin-top: 22px;
  font-size: 12px;
  color: #999;
}

@media (max-width: 480px) {
  body {
    align-items: flex-start;
  }

  .login {
    padding: 18px;
    margin-top: 30px;
  }

  .card-login {
    padding: 30px 22px;
    border-radius: 22px;
  }
}


.btn-voltar {
  position: absolute;
  top: 18px;
  left: 18px;

  width: 42px;
  height: 42px;

  border-radius: 12px;

  background: #f8f8f8;
  color: #333;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  transition: all .2s ease;
}

.btn-voltar:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-2px);
}

.card-login {
  position: relative;
}


.perfil-box {
  background: #fafafa;
  border-radius: 18px;
  padding: 18px 10px;
  text-align: center;
  border: 1px solid #eee;
}

.perfil-box i {
  color: #f5a400;
  font-size: 24px;
  margin-bottom: 8px;
}

.perfil-box small {
  display: block;
  color: #777;
  font-weight: 700;
}

.perfil-box h4 {
  margin: 6px 0 0;
  font-weight: 900;
}