* {    margin: 0;    padding: 0;    box-sizing: border-box;}body {    font-family: Arial, sans-serif;    background-image: url('background.webp');    background-size: cover;    background-position: center;    height: 100vh;    display: flex;    align-items: center;    justify-content: center;}p, a {	font-family: "Raleway", sans-serif;	color: black !important;}.container {    position: relative;    width: 100%;    height: 100%;}header {    position: absolute;    top: 20px;    left: 20px;    display: flex;    flex-direction: column;    align-items: flex-start;    opacity: 0;    animation: fadeIn 2s ease-in-out forwards;}.logo {	width: 100%;    max-width: 600px;    margin-bottom: 10px;}.contact-info p {    margin: 5px 0;}.contact-info a {    text-decoration: none;}.contact-info a:hover {    text-decoration: underline;}form {    display: flex;}.login-form {    position: absolute;    bottom: 20px;    right: 20px;    background-color: rgba(255, 255, 255, 0.6);    padding: 8px;    border-radius: 8px;    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);    opacity: 0;    animation: fadeIn 2s ease-in-out forwards;    animation-delay: 1s;    width: auto;    display: flex;    align-items: center;    justify-content: space-between;}.login-form input {    padding: 6px;    margin-right: 10px;    border: 1px solid #ccc;    border-radius: 5px;    font-size: 12px;    width: 100px; /* Krótsze pola */}.login-form input::placeholder {    color: #aaa;}.login-form button {    background-color: #9D1B12;    border: none;    padding: 8px;    border-radius: 5px;    cursor: pointer;    display: flex;    align-items: center;    justify-content: center;    font-size: 16px;}.login-form button i {    color: white;}.login-form button:hover {    background-color: #8A1710;}@keyframes fadeIn {    from {        opacity: 0;        transform: translateY(-20px);    }    to {        opacity: 1;        transform: translateY(0);    }}