@import url("https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  display: grid;
  place-items: center;
  background: #4b494b;
  background: rgb(0, 0, 0);
}

.card {
  color: #000000;
  width: 350px;
  border-radius: 10px;
  background: linear-gradient(145deg, #6a646b, #736e74);
  box-shadow: 20px 20px 60px #514f52, -20px -20px 60px #5a575a;
  border: none;
}

.neo-button {
  width: 40px;
  height: 40px;
  outline: 0 !important;
  cursor: pointer;
  color: #000000;
  font-size: 15px;
  border: none;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, #000000, #000000);
  box-shadow: inset 20px 20px 60px #000000, inset -20px -20px 60px #000000;
}

.num {
  color: #eee !important;
}

.line {
  color: #fff;
}

.neo-button:active {
  border-radius: 50%;
  background: #000000;
  box-shadow: 28px 28px 57px #000000, -28px -28px 57px #000000;
}

.fa-facebook {
  color: #ffffff;
}

.fa-linkedin {
  color: #ffffff;
}

.fa-google {
  color: #ffffff;
}

.fa-youtube {
  color: #ffffff;
}

.fa-twitter {
  color: #ffffff;
}

.user-info-table {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333;
}

.user-info-table th,
.user-info-table td {
  padding: 10px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.user-info-table th {
  background-color: #f4f4f4;
  font-weight: bold;
  color: #555;
}

.user-info-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.user-info-table tr:hover {
  background-color: #f1f1f1;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  text-decoration: none;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-logout {
  background-color: #ff4d4d;
  color: #fff;
}

.btn-logout:hover {
  background-color: #e60000;
}

.btn-login {
  background-color: #4caf50;
  color: #fff;
}

.btn-login:hover {
  background-color: #45a049;
}
