/* style.css */

/* Resetowanie marginesów i paddingów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ustawienia ogólne */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fb;
    color: #333;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    color: #1e3a8a; /* Niebieski kolor */
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

/* Linki */
a {
    color: #1e3a8a; /* Niebieski kolor */
    text-decoration: none;
    font-size: 1.2em;
}

a:hover {
    color: #3b82f6; /* Jaśniejszy niebieski przy hoverze */
    text-decoration: underline;
}

/* Stylowanie kontenera z linkami */
div {
    margin-top: 30px;
}

/* Stylizacja przycisków/linków */
button {
    background-color: #1e3a8a;
    color: #fff;
    font-size: 1.2em;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3b82f6;
}

/* Stylowanie formularzy */
input[type="text"],
input[type="password"],
input[type="number"] {
    font-size: 1.2em;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
    border-color: #1e3a8a;
    outline: none;
    background-color: #f9f9fb;
}

/* Stylizacja formularzy na urządzeniach mobilnych */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    input[type="text"],
    input[type="password"],
    input[type="number"] {
        max-width: 100%;
    }
}
