﻿h1, h2, h3, h4, h5, h6 {
    color: #f1d999;
}

a {
    color: #6699ff;
    text-decoration: underline;
}

.form-container {
    max-width: 600px;
    margin: auto;
}

form label {
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 12px;
    background-color: #121212;
    color: #f1d999;
    border: 1px solid #f1d99940;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

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

button[type="submit"] {
    margin-top: 20px;
    background-color: transparent;
    color: #f1d999;
    border: 1px solid #f1d999;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    button[type="submit"]:hover {
        background-color: #f1d99920;
    }

.alert {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: bold;
}

.alert-success {
    background-color: #113311;
    color: #ccffcc;
    border: 1px solid #33aa33;
}

.alert-danger {
    background-color: #330d0d;
    color: #ffcccc;
    border: 1px solid #aa3333;
}

/* === FILE UPLOAD === */
.file-upload {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #2c7171, #3aa9a9);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.file-name {
    margin-left: 10px;
    font-style: italic;
    color: #c5b88a;
    display: inline-block;
    margin-top: 0.5rem;
}


    .file-upload:hover {
        background: #3aa9a9;
        transform: scale(1.05);
    }

    .file-upload::file-selector-button {
        background: transparent;
        color: #fff;
        border: none;
        font: inherit;
        cursor: pointer;
        padding: 0;
    }