/*
Theme Name: Divi Child Theme
Theme URI: https://divireadythemes.com/
Description: Divi Child Theme
Author: Divi Ready Themes
Author URI: https://divireadythemes.com/
Template: Divi
Version: Updated for Divi 3+
*/



/*------------------------------------------------*/
/*-------------------[GENERAL]--------------------*/
/*------------------------------------------------*/



/*------------------------------------------------*/
/*-----------------[HEADER-MENU]------------------*/
/*------------------------------------------------*/


/*------------------------------------------------*/
/*------------------[HOMEPAGE]--------------------*/
/*------------------------------------------------*/


/*------------------------------------------------*/
/*------------------[SUBPAGES]--------------------*/
/*------------------------------------------------*/


/*------------------------------------------------*/
/*-------------------[Footer]---------------------*/
/*------------------------------------------------*/


/*------------------------------------------------*/
/*--------------------[RWD]-----------------------*/
/*------------------------------------------------*/


/*------------------------------------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/
/*--[ADD TUTORIAL CUSTOMIZATION BELOW THIS LINE]--*/
/*------------------------------------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/


.eceller-signup-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 50px;
  box-shadow: 0 0px 10px #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.eceller-signup-form input,
.eceller-signup-form label,
.eceller-signup-form button {
  width: 100%;
  box-sizing: border-box;
}

.eceller-signup-form input[type="checkbox"] {
  width: 20px;
  height: auto;
}

.eceller-signup-form input {
  padding: 12px 20px !important;
  border: 2px solid #DBDDE3 !important;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #00000099;
  height: 55px;
  transition: 0.3s ease-in-out;
}

.eceller-signup-form label,
.eceller-signup-form button {
  grid-column: span 2;
}

.eceller-signup-form button {
  background-color: #172F25;
  color: #D5C58B;
  padding: 14px 70px;
  font-weight: 500;
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  max-width: 200px;
  text-align: center;
  justify-content: center;
  display: flex;
}

.eceller-signup-form button:hover {
  background-color: #D5C58B;
  color: #fff;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .eceller-signup-form {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .eceller-signup-form label,
  .eceller-signup-form button {
    grid-column: span 1;
  }
}
 

