* {
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  background: #2b2b2b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page {
  text-align: center;
}

h1 {
  color: white;
  margin-bottom: 25px;
}

.card {
  background: #d9d9d9;
  padding: 30px;
  border-radius: 8px;
  width: 420px;
  text-align: left;
}

label {
  font-size: 14px;
}

input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: #93d7ff;
  margin-bottom: 18px;
}

.buttons {
  display: flex;
  justify-content: space-between;
}

button {
  width: 48%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.login {
  background: #7cc66b;
}

.register {
  background: #f06c73;
}

#msg {
  margin-top: 15px;
  font-size: 14px;
}
