@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

body {
    background: radial-gradient(circle at top, #151821 0%, #060607 62%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
    color: #f4f6fb;
    margin: 0;
}

.card {
    background: rgba(14, 15, 18, 0.94);
    border: 1px solid #262932;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
    padding: 30px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(360px, calc(100vw - 32px));
}

.card h2 {
    margin: 0 0 4px 0;
    font-size: 24px;
    letter-spacing: 0.02em;
}

input {
    padding: 10px;
    border: 1px solid #2a2d35;
    background: #17191f;
    color: #f5f6fa;
    border-radius: 8px;
}

input:focus {
    outline: none;
    border-color: #3a7a55;
    box-shadow: 0 0 0 2px rgba(58, 122, 85, 0.25);
}

button {
    padding: 10px;
    border: 1px solid #258c50;
    border-radius: 8px;
    background: #1f8b4c;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background: #27a35a;
}

.card a {
    color: #b3c0d9;
    text-decoration: none;
    font-size: 14px;
}

.card a:hover {
    color: #d6def1;
}

#erro,
#msg {
    min-height: 20px;
    font-size: 13px;
    color: #f7bcbc;
}
