* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #ffffff;
  color: #000;
  font-size: 16px;
  padding: 0;
}

/* TOPO ESTILO IBERIA APP */
.top-bar-app {
  background-color: #c8102e;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  height: 55px;
  width: 100%;
}

.top-bar-app .left {
  display: flex;
  align-items: center;
}

.logo-mini {
  height: 32px;
  margin-right: 8px;
}

.app-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.2;
}

.app-text strong {
  font-size: 14px;
}

.open-btn {
  background-color: white;
  color: #c8102e;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  font-size: 13px;
  padding: 6px 16px;
  cursor: pointer;
}

/* FORMULÁRIO */
.login-wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px 20px;
}

h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.subtitle {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 15px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.password-group {
  display: flex;
  align-items: center;
}

.password-group .eye-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
}

.forgot {
  text-align: right;
  margin-bottom: 25px;
}

.forgot a {
  color: #000;
  text-decoration: underline;
  font-size: 14px;
}

.login-btn {
  width: 100%;
  background-color: #c8102e;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 4px;
  font-size: 17px;
  margin-bottom: 25px;
  cursor: pointer;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 25px;
  color: #aaa;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.divider:not(:empty)::before {
  margin-right: .75em;
}
.divider:not(:empty)::after {
  margin-left: .75em;
}

.google-btn,
.facebook-btn {
  width: 100%;
  padding: 14px;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #000;
}

.google-btn img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.facebook-btn {
  background-color: #3b5998;
  color: white;
  border: none;
}

.register {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
}

.register a {
  color: #c8102e;
  text-decoration: none;
  font-weight: bold;
}
