body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;

}

.certificate-form {
    text-align: center;
}

.certificate-form label,
.certificate-form input,
.certificate-form button {
    margin: 10px;
    font-size: 16px;
}

button {
    background-color: #4f728f; 
    border: none;
    color: white;
      display: inline-block;

    padding: 10px 20px; /* Zmienione z procent na piksele, aby uniknąć zbyt małych paddingów na małych ekranach */
    text-decoration: none;
    font-size: 1rem; /* Zmienione z 100% na rem dla lepszej skalowalności */
    margin: 1rem auto; /* Ujednolicenie marginesów i użycie rem zamiast pikseli */
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s; /* Dodane dla lepszego efektu wizualnego przy najeżdżaniu */
    transition: transform 0.2s; /* Dodatkowy efekt dla interakcji */
}

.button:hover {
    background-color: #3a5a70; /* Ciemniejszy odcień dla efektu hover */
    transform: scale(1.05); /* Lekkie powiększenie przy najechaniu */
}

input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
