/* login.css */
.rr-login-container {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: #f9f9f9;
}

.rr-login-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.rr-login-box h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #d41405;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rr-login-erro {
  background: #ffe5e5;
  color: #b30000;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.rr-login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rr-login-campo {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 8px;
  overflow: hidden;
}

.rr-login-campo label {
  background: #d41405;
  color: #fff;
  padding: 10px 12px;
  font-size: 1.1rem;
}

.rr-login-campo input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
}

.rr-login-btn {
  background: #d41405;
  color: #fff;
  font-size: 1rem;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}

.rr-login-btn:hover {
  background: #b31204;
}
