.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    
}


.form-container {
    width: 50%;
    max-width: 400px; /* Dodane dla lepszej responsywności */
    min-width: 200px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}



form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.light-button{
    padding: 10px 20px;
    background-color: #bdbdbd;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}
.light-button:hover{
    background-color: #333;
    color: white;
}


input[type="text"],
input[type="email"],
input[type="password"],
input[type="datetime-local"],
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;

}

button:hover {
    background-color: #575757;
}

