/* Estilos extraídos e adaptados de index.css e Tailwind */
:root {
    --background: #ffffff;
    --foreground: #0B1F3A;
    --card: #ffffff;
    --primary: #0B1F3A;
    --secondary: #FF6B00;
    --muted-foreground: #6b7280;
    --border: #e5e7eb;
    --radius: 1rem;
    --gradient-hero: linear-gradient(135deg, #0B1F3A 0%, #FF6B00 100%);
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    padding: 1rem;
}

.login-wrapper {
    width: 100%;
    max-width: 28rem; /* max-w-md */
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    width: 4rem; /* w-16 */
    height: 4rem; /* h-16 */
    background: var(--gradient-hero);
    border-radius: 1rem; /* rounded-2xl */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem; /* mx-auto mb-4 */
}

.logo span {
    color: white;
    font-size: 1.5rem; /* text-2xl */
    font-weight: bold;
}

.header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem; /* text-2xl */
    font-weight: bold;
}

.header p {
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.card-header h2 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600;
    margin: 0;
}

.card-header p {
    font-size: 0.875rem; /* text-sm */
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.card-content {
    padding: 1.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-size: 0.875rem;
    font-weight: 500;
}

input {
    height: 2.5rem; /* h-10 */
    width: 100%;
    border-radius: 0.375rem; /* rounded-md */
    border: 1px solid var(--border);
    background-color: var(--background);
    padding: 0 0.75rem;
    font-size: 0.875rem;
    box-sizing: border-box;
}

input:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button {
    width: 100%;
    background-color: var(--primary);
    color: white;
    font-weight: 500;
    height: 2.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0b1f3ae6; /* primary/90 */
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.footer-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
}

.footer-links p {
    color: var(--muted-foreground);
}

.footer-links a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links > a {
    display: block;
    margin-top: 1rem;
    color: var(--muted-foreground);
}