body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: "Arial", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.register-container {
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 500px;
}

.register-container .log {

    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: end;
    align-items: end;
   
}

.register-container .logout {
    color: #00bcd4;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #bb86fc;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
}

input {
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    background-color: #333;
    color: #e0e0e0;
}

button {
    padding: 12px;
    background-color: #03dac6;
    border: none;
    border-radius: 10px;
    color: #1e1e1e;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #018786;
}

.message {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .register-container {
        padding: 20px;
    }
}