/* Ogólne ustawienia */
body {
    background: #f4f8fb;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222831;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
header {
	text-align: center;
}
h1, h2 {
    text-align: center;
    color: #30475e;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

form {
    background: #fff;
    max-width: 400px;
    margin: 40px auto 0 auto;
    padding: 32px 24px 24px 24px;
    border-radius: 14px;
    box-shadow: 0 2px 18px 0 rgba(48,71,94,0.11), 0 1.5px 4px 0 rgba(48,71,94,0.06);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

form input[type="text"],
form input[type="password"],
form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #b6bbc4;
    border-radius: 7px;
    font-size: 1rem;
    background: #f7f8fa;
    transition: border-color 0.2s;
    resize: vertical;
}

form input[type="text"]:focus,
form input[type="password"]:focus,
form textarea:focus {
    border-color: #222831;
    outline: none;
}

form textarea {
    min-height: 80px;
    max-height: 260px;
    font-size: 1rem;
    font-family: inherit;
}

form input[type="submit"],
form button[type="submit"], 
form button {
    background: #30475e;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 0 1px 6px 0 rgba(48,71,94,0.09);
    transition: background 0.21s, transform 0.12s;
}

form input[type="submit"]:hover,
form button[type="submit"]:hover, 
form button:hover {
    background: #222831;
    transform: translateY(-1px) scale(1.03);
}

a {
    color: #222831;
    text-decoration: none;
    font-weight: 500;
    margin-left: 18px;
    transition: color 0.17s;
}

a:hover {
    color: #30475e;
    text-decoration: underline;
}

p {
    text-align: center;
    font-size: 1rem;
    margin-top: 14px;
}

/* Wiadomości */
p[style*="color:green"] {
    background: #eafbe7;
    border: 1px solid #8fd19e;
    color: #218838 !important;
    border-radius: 7px;
    padding: 10px 0;
}

p[style*="color:red"] {
    background: #ffeaea;
    border: 1px solid #f5bdbd;
    color: #d63447 !important;
    border-radius: 7px;
    padding: 10px 0;
}

/* Panel artykułów */
h3 {
    margin: 26px auto 6px auto;
    color: #30475e;
    font-size: 1.18rem;
    max-width: 600px;
    word-break: break-word;
	text-align: center;
}

div.user-article-content {
    background: #f7f8fa;
    border-radius: 7px;
    padding: 12px 15px;
    margin: 0 auto 5px auto;
    max-width: 600px;
    border: 1px solid #e0e5ec;
    font-size: 1.06rem;
    word-break: break-word;
    box-shadow: 0 1px 7px 0 rgba(48,71,94,0.04);
}

small {
    display: block;
    text-align: right;
    color: #888c94;
    margin: 0 auto 4px auto;
    max-width: 600px;
}

hr {
    border: 0;
    border-top: 1px solid #e0e5ec;
    margin: 14px auto 10px auto;
    max-width: 620px;
}

@media (max-width: 700px) {
    h3, div.user-article-content, small, hr {
        max-width: 97vw;
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    form {
        max-width: 98vw;
        padding: 16px 6vw 18px 6vw;
    }
    h1, h2 {
        font-size: 1.2rem;
        margin-top: 16px;
    }
}
.artykul {
	margin-left:15px;
}
  .nagl-artyk {
    background-color: rgb(131, 21, 21);
    color: whitesmoke;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}