body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fcfcfc;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.form-header {
    background-color: #112e51; /* Vaše tmavě modrá */
    color: #fff;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.form-header h1 {
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-header p {
    margin: 8px 0 0 0;
    font-size: 14px;
    color: #d1dbe5;
}

.company-box {
    background-color: #f8f9fa;
    border-left: 4px solid #112e51;
    padding: 15px;
    margin-bottom: 30px;
    font-size: 14px;
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    color: #112e51;
    text-transform: uppercase;
    border-bottom: 2px solid #eaedf1;
    padding-bottom: 6px;
    margin: 30px 0 15px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .grid-2 { 
        grid-template-columns: 1fr; 
    }
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 13px;
    color: #555;
}

input[type="text"], 
input[type="email"], 
input[type="date"], 
textarea {
    width: 100%;
    padding: 11px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #fafafa;
    font-size: 14px;
}

input:focus, 
textarea:focus {
    border-color: #112e51;
    outline: none;
    background-color: #fff;
}

.form-group-full {
    margin-bottom: 15px;
}

.submit-btn {
    background-color: #112e51;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 30px;
    transition: background 0.2s;
}

.submit-btn:hover {
    background-color: #0a1d33;
}

.footer-text {
    font-size: 12px;
    color: #777;
    margin-top: 25px;
    line-height: 1.5;
}
.required {
    color: #e51a1a;
    font-weight: bold;
    margin-left: 2px;
}