 
Position:	 Ln 1, Ch 1 	Total:	 Ln 1, Ch 0 	 
search		
replace		
match case regular expressions 
find next replace replace all
 
Editarea 0.8.2


Shortcuts:

 Tab: add tabulation to text
 Shift+Tab: remove tabulation to text
 Ctrl+f: search next / open search area
 Ctrl+r: replace / open search area
 Ctrl+h: toggle syntax highlight on/off
 Ctrl+g: go to line
 Ctrl+z: undo
 Ctrl+y: redo
 Ctrl+e: about
 Ctrl+q, Esc: close popup
 Accesskey E: Toggle editor

Notice: syntax highlight function is only for small text 
© Christophe Dolivet 2007-2010
body {
  background-color: #F8F6F3;
  font-family: "Tajawal", sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* الصندوق الرئيسي للنموذج */
.form-container {
  max-width: 700px;
  margin: 60px auto;
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.form-container:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* عنوان الصفحة */
.form-container h1,
.form-container h2 {
  text-align: center;
  color: #8a6a44;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

/* النصوص التوضيحية */
.form-container p {
  text-align: center;
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* تنسيق الحقول */
form label {
  display: block;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
  background: #fff;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #C8B091;
  box-shadow: 0 0 8px rgba(200, 176, 145, 0.5);
  outline: none;
}

/* الزر الذهبي */
.btn-submit {
  display: inline-block;
  background: linear-gradient(135deg, #C8B091, #B8926B);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #B8926B, #9C7C55);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 176, 145, 0.4);
}

/* تحسين العرض في الجوال */
@media (max-width: 600px) {
  .form-container {
    margin: 30px 15px;
    padding: 25px 20px;
  }

  .form-container h1 {
    font-size: 1.6rem;
  }

  .btn-submit {
    font-size: 1rem;
    padding: 10px 20px;
  }
}