/* Style-contact.css */

        body {
            font-family: 'Ubuntu', sans-serif;
            background: linear-gradient(135deg, #999999 0%, #333333 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            background: rgb(155, 155, 155);
            border-radius: 20px;
            box-shadow: 0 60px 60px rgba(0, 0, 0, 0.9);
            max-width: 600px;
            width: 100%;
            padding: 40px;
            margin-right: 20px;
        }

        h1 {
            color: #333;
            margin-bottom: 10px;
            font-size: 3em;
            padding-bottom: 10px;
        }

        .subtitle {
            color: #313131;
            margin-bottom: 30px;
            font-size: 0.95em;
        }

        .form-group {
            margin-bottom: 10px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #000000;
            font-weight: 500;
        }

        input, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #5d5b5b;
            border-radius: 8px;
            font-size: 1em;
            transition: border-color 0.3s;
            font-family: inherit;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #c1c1c3;
        }

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

        .char-count {
            text-align: right;
            font-size: 0.85em;
            color: #999;
            margin-top: 5px;
        }

        button {
            background: linear-gradient(135deg, #202020 0%, #898889 100%);
            color: rgb(255, 255, 255);
            padding: 14px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 20px rgba(0, 0, 0, 0.8);
        }

        button:active {
            transform: translateY(0);
        }

        .message {
            margin-top: 20px;
            padding: 15px;
            border-radius: 8px;
            display: none;
            text-align: center;
            font-weight: 500;
        }

        .message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .error-text {
            color: #dc3545;
            font-size: 0.85em;
            margin-top: 5px;
            display: none;
        }