/*
 Theme Name:   Copallyt Child
 Theme URI:    http://themes.webdevia.com/call-center-customer-services-wordpress-theme
 Description:  Copallyt Child Theme
 Author:       Mymoun
 Author URI:   http://www.webdevia.com/
 Template:     copallyt
 Version:      1.1
 License: 	   ---
 License URI:  ----
 Tags:         two-columns, custom-background, threaded-comments, translation-ready, custom-menu
 Text Domain:  Procall-child
*/

.cky-btn-revisit-wrapper button:after{content:none !important;}


/* Outer wrapper */
.job_application_form {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: "Poppins", sans-serif;
}

/* Grid layout */
.job_application_form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}

/* Full-width field (textarea or file if desired) */
.job_application_form .form-filed.full-width {
  grid-column: 1 / -1;
}

/* Labels */
.job_application_form label {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 6px;
}

/* Inputs and Textareas */
.job_application_form input[type="text"],
.job_application_form input[type="email"],
.job_application_form input[type="tel"],
.job_application_form input[type="file"],
.job_application_form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.job_application_form input:focus,
.job_application_form textarea:focus {
  border-color: #0073aa;
  box-shadow: 0 0 5px rgba(0,115,170,0.3);
  outline: none;
}

/* Submit Button */
.job_application_form .form-btn {
  text-align: center;
  margin-top: 25px;
}

.job_application_form input[type="submit"] {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.job_application_form input[type="submit"]:hover {
  background: #005f87;
}

/* Responsive - single column on mobile */ 
@media (max-width: 768px) {
  .job_application_form .form-grid {
    grid-template-columns: 1fr;
  }
}