body {

    background-color: #eeeded;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

form {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    box-sizing: border-box;
}

label {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0 16px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #28a745;
    outline: none;
}

button {
    width: 100%;
    padding: 10px 12px;
    background-color: #28a745;
    /* zielony przy rejestracji */
    border: none;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #1e7e34;
}

p {
    text-align: center;
    font-size: 14px;
}