/*
Theme Name: imta-theme
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/* Wrapper: max-width 800 + center */
.cf7-like-ui{
  max-width: 800px;
  margin: 0 auto;          /* căn giữa trang */
  padding: 0 16px;         /* đệm 2 bên cho mobile */
  box-sizing: border-box;
}

/* Intro text */
.cf7-like-ui .cf7-intro{
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #222;
}
.cf7-like-ui .cf7-intro a{
  color: inherit;
  text-decoration: underline;
}

/* 2-column grid */
.cf7-like-ui .cf7-row{
  display: flex;
  gap: 28px;
  margin-bottom: 18px;
}
.cf7-like-ui .cf7-col{
  flex: 1;
}
.cf7-like-ui .cf7-row-full{
  display: block;
}

/* Inputs */
.cf7-like-ui input[type="text"],
.cf7-like-ui input[type="email"],
.cf7-like-ui input[type="tel"],
.cf7-like-ui textarea{
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  background: #fff;
  padding: 14px 16px;
  border-radius: 4px;
  outline: none;
  font-size: 15px;
  line-height: 1.4;
}

.cf7-like-ui textarea{
  min-height: 200px;
  resize: vertical;
}

.cf7-like-ui input::placeholder,
.cf7-like-ui textarea::placeholder{
  color: #9aa3ab;
}

.cf7-like-ui input:focus,
.cf7-like-ui textarea:focus{
  border-color: #9fd0ea;
  box-shadow: 0 0 0 3px rgba(110, 190, 231, 0.18);
}

/* Submit aligned right */
.cf7-like-ui .cf7-actions{
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.cf7-like-ui input[type="submit"]{
  background: #70a84c;
  border: none;
  color: #fff;
  padding: 0px 44px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
}
.cf7-like-ui input[type="submit"]:hover{
  filter: brightness(0.96);
}
.cf7-actions p {
	display: flex;
    flex-direction: column;
}
/* Responsive: stack to 1 column */
@media (max-width: 768px){
  .cf7-like-ui .cf7-row{
    flex-direction: column;
    gap: 14px;
  }
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}