* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
         
        body {
            background-image: url(/img/background-eduar-talavera-ornamental.jpg);
            background-attachment: fixed;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 800px;
            margin: 30px auto;
            padding: 20px;
            background-color: rgba(38, 38, 38, 0.8);
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }
        
        h1 {
            font-family: "Jost", Arial, Helvetica, sans-serif;
            font-weight: 700;
            font-size: 3.5em;
            text-align: center;
            margin-bottom: 30px;
            padding: 0;
            -webkit-text-fill-color: rgb(255, 255, 255);
        }
        
        h1:hover {
    -webkit-text-stroke: 1px rgb(255, 255, 255);
    -webkit-text-fill-color: transparent;
        }

        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #ffffff;
        }
        
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea,
        select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border 0.3s;
            margin-bottom: 8px;
            background-color: rgba(38, 38, 38, 0.8);
            color: white;
        }

        input::placeholder{
            color: rgb(184, 184, 184);
        }
        
        input:focus,
        textarea:focus,
        select:focus {
            border-color: #5c5c5c;
            outline: none;
            background-color: white;
            color: black;
        }
        
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .file-upload {
            position: relative;
            margin-bottom: 20px;
        }
        
        .file-upload input[type="file"] {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        
        .file-upload-label {
            display: block;
            padding: 12px;
            background: #363535;
            border: 2px dashed #ccc;
            border-radius: 4px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .file-upload-label:hover {
            background: #e9e9e9;
            border-color: #999;
        }
        
        .file-name {
            margin-top: 8px;
            font-size: 14px;
            color: #bcbcbc;
        }
        
        .checkbox-group {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .checkbox-option {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .checkbox-option input {
            width: auto;
        }
        
        .required {
            color: #e74c3c;
        }
        
        .btn-submit {
            display: block;
            width: 100%;
            padding: 15px;
            margin-top: 30px;
                  background-color: rgba(38, 38, 38, 0.8);
             color: rgb(248, 248, 248);
            border: 2px solid #d2d2d2;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            letter-spacing: 1px;
            transition: background 0.3s;
        }
        
        .btn-submit:hover {
       color: rgb(0, 0, 0);
             background-color: #ffffff;
             letter-spacing: 6px;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-col {
            flex: 1;
        }
        
        .message {
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
            text-align: center;
            display: none;
        }
        
        .success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        @media (max-width: 600px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .container {
                margin: 20px;
                padding: 15px;
            }

            h1 { font-size: 2.5rem;

            }
        }