/* === STYLE GLOBALNE === */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #0f0f10;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1,
h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

p {
    color: #ccc;
    text-align: center;
    margin-bottom: 30px;
    max-width: 400px;
}

.container {
    background: #1a1a1d;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    width: 340px;
    text-align: center;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    border-radius: 6px;
    background: #2a2a2a;
    color: white;
}

input::placeholder {
    color: #888;
}

button {
    width: 100%;
    padding: 12px;
    background: #c62a3d;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #a81f31;
}

.links {
    margin-top: 15px;
    font-size: 14px;
}

.links a {
    color: #c62a3d;
    text-decoration: none;
    margin: 0 6px;
}

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

footer {
    margin-top: 40px;
    font-size: 12px;
    color: #777;
    text-align: center;
}