@font-face {
    font-family: 'BungeeSpice';
    src: url('font/BungeeSpice-Regular.ttf') format('truetype');
}

html {
    font-size: 16px;
}


body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;


    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100svh;
    background-image: url("img/stacja_paliw.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.title {
    position: absolute;
    top: 40px;
    width: 100%;
    color: rgb(255, 166, 0);
    font-size: 3rem;
    text-align: center;
    font-family: 'BungeeSpice', sans-serif;
}

form {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 10px;
}

label {
    width: 100%;
    text-align: center;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    margin-top: 10px;
    font-size: 1.2rem;
    background-color: #ffffff;
    border-radius: 40px;
}

input[type="submit"] {
    padding: 10px;
    border: 1px solid #ccc;
    margin-top: 10px;
    font-size: 1.4rem;
    background-color: #04ff00;
    border-radius: 40px;
}

.error {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.error-message {
    color: #ff0000;
    font-size: 1.4rem;
    padding: 10px;
    /* text-shadow: 4px 4px 6px rgba(255, 255, 255, 1); */
    background-color: #ffffff5c;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: center;
}