@font-face {
  font-family: "Product Sans";
  src: url("../assets/font/SVN-Product Sans Regular.otf") format("opentype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Product Sans", sans-serif;
}

body {
  background: #f5f7fb;
}

.profile-container {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card {
  width: 100%;
  max-width: 430px;
  background: #fff;
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.avatar {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  background: #b6cdff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 52px;
}

h2 {
  text-align: center;
  margin-top: 20px;
  font-size: 23px;
  color: #003abc;
}

.info-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.userid {
  padding: 5px 14px;
  border-radius: 20px;
  background: #fff3e6;
  color: #f57c00;
  font-size: 14px;
  font-weight: 500;
}

.entity {
  padding: 5px 14px;
  border-radius: 20px;
  background: #eef4ff;
  color: #003abc;
  font-size: 14px;
  font-weight: 500;
}

.status {
  margin-top: 28px;
  padding: 15px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.status.ok {
  background: #ecfff3;
  color: #19a44b;
}

.status.bad {
  background: #fff3f3;
  color: #d63031;
}

.status i {
  font-size: 20px;
}

.menu {
  margin-top: 35px;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 18px 5px;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-item:hover {
  background: #f5f8ff;
}

.menu-item i:first-child {
  width: 28px;
  font-size: 20px;
}

.menu-item span {
  flex: 1;
  font-size: 17px;
  color: #333;
}

.menu-item i:last-child {
  color: #b8b8b8;
  transition: 0.25s;
}

.menu-item:hover i:last-child {
  transform: translateX(4px);
}

.change {
  color: #003abc;
}

.history {
  color: #17a2b8;
}

.logout {
  color: #e53935;
}

.change:hover {
  color: #002b88;
}

.history:hover {
  color: #138496;
}

.logout:hover {
  color: #c62828;
}
