:root {
  font-family: Inter, Arial, sans-serif;
  background: #f3f6fa;
  color: #172842;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.hidden {
  display: none !important;
}

.login {
  width: min(410px, calc(100% - 30px));
  margin: 10vh auto;
  padding: 32px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(20, 40, 70, .12);
}

.mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: #e93f6c;
  color: white;
  font-size: 28px;
  font-weight: 800;
  border-radius: 14px;
}

form {
  display: grid;
  gap: 14px;
}

input,
button {
  padding: 13px;
  border-radius: 10px;
  font: inherit;
}

input {
  border: 1px solid #d7deea;
}

button {
  border: 0;
  background: #e93f6c;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

header {
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111e34;
  color: white;
}

header h1 {
  margin: 0;
}

.content {
  padding: 25px 5%;
}

.card {
  padding: 24px;
  margin-bottom: 22px;
  background: white;
  border-radius: 17px;
  box-shadow: 0 8px 25px rgba(20, 40, 70, .07);
}

table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #edf0f4;
}

.table {
  overflow-x: auto;
}

a {
  color: #d7315e;
  font-weight: 700;
}
