body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

input[type="text"], input[type="password"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #2c2c2c;
    color: #e0e0e0;
    border: none;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background-color: #6200ea;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background-color: #3700b3;
}

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

.alert {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #2c2c2c;
    border-left: 4px solid #6200ea;
}

.alert-error {
    border-left-color: #cf6679;
}

.message-box {
    background-color: #2c2c2c;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    color: #e0e0e0;
}

.message-box-title {
    color: #bb86fc;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 5px;
}

.note {
    background-color: #3700b3;
    padding: 10px;
    margin: 15px 0;
    border-radius: 5px;
    color: #e0e0e0;
}

.btn {
    background-color: #6200ea;
    color: #fff;
    border: none;
    width: 100%;
    margin-top: 10px;
}

.btn:hover {
    background-color: #3700b3;
    color: #fff;
}

a {
    color: #bb86fc;
    text-decoration: none;
}

a:hover {
    color: #6200ea;
    text-decoration: underline;
}

