/**
 * DKVS Employee Site Update
 * Frontend Styles
 */

.dkvs-esu-form {
    max-width: 700px;
    margin: 30px auto;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: inherit;
}

.dkvs-esu-field {
    margin-bottom: 20px;
}

.dkvs-esu-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #222;
}

.dkvs-esu-field .required {
    color: #d63638;
}

.dkvs-esu-field input[type="text"],
.dkvs-esu-field textarea,
.dkvs-esu-field input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    background: #fff;
}

.dkvs-esu-field textarea {
    resize: vertical;
    min-height: 150px;
}

.dkvs-esu-field small {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 13px;
}

.dkvs-esu-submit {
    display: inline-block;
    padding: 14px 28px;
    background: #0073aa;
    color: #fff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background .3s ease;
}

.dkvs-esu-submit:hover {
    background: #005177;
}

.dkvs-esu-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.dkvs-esu-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 600;
}

.dkvs-success {
    background: #ecfdf3;
    border: 1px solid #8fd19e;
    color: #146c43;
}

.dkvs-error {
    background: #fdeaea;
    border: 1px solid #e0a3a3;
    color: #b42318;
}

@media (max-width: 768px) {

    .dkvs-esu-form {
        margin: 15px;
        padding: 20px;
    }

    .dkvs-esu-submit {
        width: 100%;
    }
}