aside {
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

aside .user {
  background-color: #fff;
  padding: 20px 0;
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.06);
}

[data-theme='dark'] aside .user {
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.1);
}

aside .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

aside .info .nickName {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #000;
}

[data-theme='dark'] aside .info .nickName {
  color: rgba(255, 255, 255, 0.7);
}

aside .info .nickName img {
  width: 20px;
  margin-right: 5px;
}

aside .info .permission {
  color: #000;
}

[data-theme='dark'] aside .info .permission {
  color: rgba(255, 255, 255, 0.7);
}

aside .userMenu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  gap: 10px;
  margin: 0 10px;
}

aside .userMenu div {
  background-color: #f5f6f9;
  border-radius: 6px;
  box-sizing: border-box;
}

aside .userMenu div a {
  color: #697183;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

aside .userBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

aside .userBox .message {
  border-radius: 6px;
}

aside .alarm svg,
aside .userBox .message svg {
  width: 12px;
  margin-right: 6px;
}

aside .userBox .message .messageCount {
  margin-left: 6px;
}

aside .alarm,
aside .userBox .message,
aside .admin {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f6f9;
  border-radius: 6px;
  box-sizing: border-box;
  margin: 10px 10px 0 10px;
}

[data-theme='dark'] aside .userMenu div,
[data-theme='dark'] aside .alarm,
[data-theme='dark'] aside .userBox .message,
[data-theme='dark'] aside .admin {
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.1);
}

[data-theme='dark'] aside .userMenu div a,
[data-theme='dark'] aside .alarm a,
[data-theme='dark'] aside .userBox .message a,
[data-theme='dark'] aside .admin a {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme='dark'] aside .userMenu div a:hover,
[data-theme='dark'] aside .alarm a:hover,
[data-theme='dark'] aside .userBox .message a:hover,
[data-theme='dark'] aside .admin a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

aside .getAlarm,
aside .getMessage {
  background-color: yellow;
}

aside .alarm a,
aside .message a,
aside .admin a {
  color: #697183;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
}

aside .getAlarm a,
aside .getMessage a {
  color: rgba(0, 0, 0, 0.5);
}

aside .userMenu a:hover,
aside .alarm a:hover,
aside .message a:hover,
aside .admin a:hover {
  font-weight: bold;
  background-color: #EEF0F4;
  border-radius: 6px;
}

aside .getMessage a:hover {
  background-color: yellow;
}

aside .inputsAndButtons {
  
}

aside .inputsAndButtons form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

aside .inputs {
  width: 100%;
  display: flex;
  flex-direction: column;
}

aside .buttons {
  width: 100%;
}

aside .inputsAndButtons form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

aside .inputsAndButtons input {
  width: 100%;
  height: 50px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 1em;
  border-radius: 8px;
  border: 0;
  margin: 0;
}

[data-theme='dark'] aside .inputsAndButtons input {
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.1);
}

aside .inputsAndButtons button {
  width: 100%;
  height: 50px;
  cursor: pointer;
  font-size: 1em;
  padding: 10px 0;
  color: #fff;
  background-color: #434B57;
  border: 0;
  border-radius: 8px;
}

aside .inputsAndButtons button:hover {
  background-color: #353C45;
}

aside .joinAndFindPassword {
  display: flex;
  justify-content: space-between;
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.5);
}

aside .joinAndFindPassword a {
  color: rgba(0, 0, 0, 0.5);
}

aside .joinAndFindPassword a:hover {
  color: rgba(0, 0, 0, 0.8);
}

[data-theme='dark'] aside .joinAndFindPassword a {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme='dark'] aside .joinAndFindPassword a:hover {
  color: rgba(255, 255, 255, 0.9);
}

aside #counter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
  border-radius: 8px;
  background-color: #fff;
  padding: 10px 14px;
}

[data-theme='dark'] aside #counter {
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.1);
}

aside #counter .item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}


@media (max-width: 1280px) {
  aside {
    width: 100%;
  }

  aside .userBox {
    display: none;
  }
}