/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

:root {
    --bg-body: #F4F6F8;
    --bg-header: #FFFFFF;
    --text-primary: #1C1E21;
    --text-secondary: #4E5D6C;
    --btn-primary: #C8943B;
    --btn-hover: #C8943B;
    --link-color: #4A4A4A;
    --border-color: #D0D7DE;
    --highlight: #7E57C2;
    --shadow-sm: 0 2px 8px rgba(28, 30, 33, 0.1);
    --shadow-hover: 0 4px 12px rgba(28, 30, 33, 0.15);
}

[data-theme="dark"] {
    --bg-body: #0D1117;
    --bg-header: #161B22;
    --text-primary: #E6EDF3;
    --text-secondary: #8B949E;
    --border-color: #30363D;
    --highlight: #9B6BFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.4);
}

body {
    background: var(--bg-body);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-container {
    background: var(--bg-header);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: all 0.3s ease;
}

.form-container h2 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.form-container input,
.form-container select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-header);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-container input:focus,
.form-container select:focus {
    outline: none;
    border-color: var(--highlight);
    box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.1);
}

.form-container button {
    background: var(--btn-primary);
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.form-container button:hover {
    background: var(--btn-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.form-container a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: var(--highlight);
    transition: all 0.3s ease;
}

.form-container a:hover {
    text-decoration: underline;
    color: var(--btn-primary);
}

.msg {
    margin-bottom: 15px;
    color: red;
    font-weight: bold;
}
