﻿ html {
  direction: rtl;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

@font-face {
  font-family: myfont;
  src: url("../fonts/KUF.TTF") format("truetype");
}
       a[href="http://somee.com"] {
color: transparent !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    display: block;     
    text-align: center;    
    background: transparent;
    z-index: 9999 !important;
    margin: 0;             
    padding: 10px 0; 
  }

  center {
    display: block;
  }
        #hideMe {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 90%;
            max-width: 600px;
            padding: 20px;
            z-index: 1000;
        }
.header {
  margin-bottom: 20px;
  text-align: center;
}
.header img {
  width: auto;
  max-width: 60%;
  height: auto;
  max-height: 200px;
  display: inline-block;
  object-fit: cover;
}        *, *::before, *::after { box-sizing: border-box; }
        body {
            margin: 0;
            font-family: myfont, sans-serif !important;
            line-height: 1.6;
            background-color: #f5f5f5;
            color: #333;
        }
        img { max-width: 100%; height: auto; }
        /* Header */
        .header {
            text-align: center;
            margin-bottom: 20px;
        }
        /* Container */
        .container {
            width: 90%;
            max-width: 800px;
            margin: 0 auto 20px;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .title {
            text-align: center;
            font-size: 1.4em;
            margin-bottom: 20px;
            color: #3271a5;
        }
        /* Form Grid */
        .ticket-form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 5px;
            font-weight: bold;
            color: #3271a5;
        }
        input, select, textarea, .btn-submit {
            width: 100%;
            padding: 10px;
            font-family: inherit !important;
            font-size: 1em;
            border: 1px solid #3a5cf0;
            border-radius: 5px;
        }
        textarea { resize: vertical; min-height: 120px; }
        .btn-submit {
            background-color: #3271a5;
            color: #fff;
            border: none;
            cursor: pointer;
        }
        .btn-submit:hover { opacity: 0.9; }