body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #c300ff, #ffbb00);
    color: white;
    display: flex;
    justify-content: center;
    padding: 40px;
}

.formular {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

h1 {
    text-align: center;
    margin-bottom: 25px;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
}

button {
    background-color: #5e60ce;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #3a0ca3;
}

#zprava {
    margin-top: 20px;
    text-align: center;
}
select {
  background-color: #1e1e2f;
  color: #fff;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
}

select:focus {
  outline: none;
  border-color: #5e90ff;
  box-shadow: 0 0 0 2px rgba(94, 144, 255, 0.5);
}

        a:link, a:visited {
        background-color: #ffbb00;
        color: #ea00ff;
        padding: 14px 25px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        }

        a:hover, a:active {
         background-color: #ea00ff;
         color: #ffbb00;
        }