/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #ffffff;
}

h2 {
    text-align: center;
    color: #ffffff;
}

.register-container {
    width: 100%;
    max-width: 400px;
}

form {
    background: #292828;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 100%;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}


input[type="submit"] {
    background-color: #1a73e8;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #155ab0;
}

/* Links */
a {
    text-decoration: none;
    color: #1a73e8;
    font-size: 14px;
}

a:hover {
    color: #155ab0;
}

/* Additional Links Section */
div {
    text-align: center;
    margin-top: 10px;
}

/* Error Message */
.error-message {
    color: #ff4d4d;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

/* Success Message */
.success-message {
    color: #4caf50;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}