main {
    max-width: 600px;
    width: 100%;   /* zabere celou šířku mobilu, ale nepřekročí max-width */
    margin: 0 auto;
    padding: 20px;
}

.zlata {
   color: #c0b439;
   font-weight: 600;
   text-align: center;
}

form {
    max-width: 520px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

input, textarea {
    padding: 14px 16px;
    border: 1px solid #c0b439;
    border-radius: 30px 0px 30px 0px;
    font-size: 15px;
    font-family: inherit;
    background-color: #fafafa;
    transition: all 0.2s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #37bde6;
    background-color: #fff;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    font-family: var(--font-body);
    font-weight: bold;
    margin-top: 10px;
    padding: 14px 30px;
    border: none;
    border-radius: 30px 0px 30px 0px;
    background-color: #c0b439;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}

button:hover {
    background-color: #37bde6;
}

.podpis {
  font-family: var(--font-accent);
  font-size: 2rem;
  line-height: 1.5;
  color: #37bde6;
  letter-spacing: 0.01rem;
}

.oknaPrihlaseni {
    width: 350px;
}