:root {
    --mygreen: #b7fc9c
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Bahnschrift light, sans-serif;
    margin: 0;
}

p {
    color: #000;
    font-weight: bold;
    font-family: Bahnschrift light, sans-serif;
    font-size: 20px;
}

header {
    padding: 20px;
}

.container {
    display: flex;
    align-items: center;
}

.container a img {
    width: 120px;
    height: auto;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background-image: url('static/img/excavator-tree.png'); /* <- tu wstaw wygenerowany obrazek */
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    flex: 1;
}

.text-content p {
    margin: 5px 0;
}

.contact-info {
    display: flex;
    align-items: center;
}

/*
.contact-info a {
    margin-left: 0;
    margin-right: 10px;
    color: #000;
}
*/
#excavator-tree a img{
    width: 500px;
    height: auto;
}

.required input,
.required textarea {
  outline: none; /* wyłącz domyślny outline */
  border: 2px solid #ccc;
  padding: 8px;
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.required input:hover,
.required textarea:hover {
  border-color: var(--mygreen);
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25); /* zielony "outline" efekt */
}

.part {
  position: relative;
  width: 200px;
  height: 50px;
  margin-top: 20px;
}

.optional {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.optional input {
   width: 30%;
   height: 1%;
   border: none;
   font-size: 1px;
   line-height: 1px;
   padding: 0;
   margin: 0;
   display: block;
}

.send-button {
    position: absolute;
    padding-top:0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}

.send-button:hover {
    color: var(--mygreen);
    transition: color 0.3s;
}