html, body {
    margin: 0;
    padding: 0;
    background-color: #6EBF58;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    overflow: hidden;
}

.wrapper {
    display: grid;
    place-items: center;
    height: 100%;
    overflow: auto;
    padding: 40px 20px;
}

#formContent {
    background: #fff;
    padding: 20px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}

#icon {
    width: 100px;
    margin-bottom: 20px;
}

input[type="text"],
input[type="password"],
input[type="submit"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

input[type="text"],
input[type="password"] {
    border: 1px solid #ccc;
    background-color: #f6f6f6;
}

input[type="submit"] {
    background-color: #6EBF58;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

input[type="submit"]:hover {
    background-color: #00FF80;
}

.errmsg {
    color: red;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Małe ekrany – logo mniejsze, padding mniejszy */
@media (max-height: 600px) {
    #icon {
        width: 80px;
        margin-bottom: 15px;
    }

    #formContent {
        padding: 15px;
    }
}
