body {
  margin: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
  background-color: #121212;
  color: #f1f1f1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.register-page main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
}

body.register-page form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

body.register-page input {
    width: 100%;
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: #f1f1f1;
    box-sizing: border-box;
}

body.register-page button {
    width: 100%;
    max-width: 250px;
    align-self: center;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    background-color: #3a8ef6;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

body.register-page button:hover {
    background-color: #2d6ed6;
}

body.register-page p {
    color: #d3f20a;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 500px) {
    body.register-page main {
        padding: 1rem;
    }

    body.register-page button {
        max-width: 100%;
    }
}
