body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(31, 0, 43);
}

h1, h2 {
    margin-top: 20px;
    color: white;
}

#authSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}

.user-data-container {
    background-color: #a020f0;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    margin-top: 50px;
    width: 300px;
}

.user-data-container h2 {
    margin: 0;
}

.data-section {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 20px;
}

.data-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.data-item label {
    margin-bottom: 5px;
}

.data-item .data-value {
    background-color: white;
    color: black;
    padding: 10px;
    border-radius: 5px;
    min-width: 50px;
    text-align: center;
}

.data-item.full-width {
    width: 100%;
}

#backButton {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background-color: #333;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}



/* CSS */
.button-32 {
  background-color: #a020f0;
  border-radius: 12px;
  color: #FFF;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 15px;
  text-align: center;
  transition: 200ms;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-32:not(:disabled):hover,
.button-32:not(:disabled):focus {
  outline: 0;
  background: #f4e603;
  box-shadow: 0 0 0 2px rgba(0,0,0,.2), 0 3px 8px 0 rgba(0,0,0,.15);
}

.button-32:disabled {
  filter: saturate(0.2) opacity(0.5);
  -webkit-filter: saturate(0.2) opacity(0.5);
  cursor: not-allowed;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    color: white;
    background-color: #ffb000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #d68a00;
}