:root {
  /* Default theme */
  --primary-color: #2e7d32;
  --secondary-color: #66bb6a;
  --background-color: #e8f5e9;
  --text-color: #1b5e20;
}

/* Active theme */
[data-theme="active"] {
  --primary-color: #2e7d32;
  --secondary-color: #66bb6a;
  --background-color: #e8f5e9;
  --text-color: #1b5e20;
}

/* Inactive theme */
[data-theme="inactive"] {
  --primary-color: #9e9e9e;
  --secondary-color: #cfcfcf;
  --background-color: #f5f5f5;
  --text-color: #757575;
}

/* Error theme */
[data-theme="error"] {
  --primary-color: #c62828;
  --secondary-color: #ef5350;
  --background-color: #ffebee;
  --text-color: #b71c1c;
}

body {
    font-family: Sans-serif;
    margin: 20px;
    background-color: var(--background-color);
    color: var(--text-color);
    text-align: center;
    font-size: 1.2em;
}

h1 {
    color: var(--primary-color);
    font-size: 2em;
}

form, section {
    max-width: 400px;
    margin: auto;
    padding: 20px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background-color: white;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="url"] {
    width: calc(100% - 24px);
    padding: 12px;
    margin: 12px 0;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
}

button {
    padding: 20px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2em;
}

button:hover {
    background-color: var(--secondary-color);
}
