/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  background-color: #ffffff;
  color: #555555;
  line-height: 1.6;
}

/* Container */
.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 50px auto;
  margin-bottom: 0px;
}

.left-section {
  
  text-align: left;
  
}

.left-section .logo img {
  width: 150px;
  margin-bottom: 40px;
}

.left-section h1 {
  font-size: 26px;
  color: #898683;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.3em;
}

.form {
  margin-top: 20px;
}

.form p {
  font-weight: 600;
    margin-bottom: 10px;
    color: #898683;
    font-size: 24px;
}

.form input {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 7px;
  margin: 3px 0;
  border: 1px solid #fff;
  font-size: 14px;
  background: #f1ece6;
}

.form.button {
  background-color: #c8c4bf;
  color: #fff;
  border: none;
  padding: 6px 20px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  width: auto;
}

.form.button:hover {
  background-color: #565656;
}

.right-section {
  
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-section img {
  max-width: 100%;
 
}

/* Footer */
footer {
  text-align: center;
 padding-top:20px;
  font-size: 14px;
  color: #777777;
 
}

footer .social-links {
  margin-top: 10px;
  margin-bottom: 10px;
}

footer .social-links a {
  margin: 0 5px;
  text-decoration: none;
  font-size: 20px;
  color: #bfbfc2;
  
}

footer .social-links a i{
  background: #c8c4bf;
    padding: 7px;
    border-radius: 100%;
    width: 35px;
    height: 35px;
  
    color: #fff}

    footer .social-links a i:hover{background-color: #bfbfc2;}
.email a {
 
  font-size: 16px;
  color: #bfbfc2;
  text-decoration: none;
}.email a:hover {

color:#7d7d7d
}
footer .social-links a:hover {
  color: #7d7d7d;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
      text-align: center;
  }

  .left-section, .right-section {
      padding: 10px;
  }

  .form input {
      max-width: 100%;
  }

  .right-section img {
    width: 85%;
    margin-left: 50px;
    text-align: center;
}
.row-container{padding:15px;}
.form p{font-size: 30px;}
}
/*Responsive CSS */

@media only screen and (max-width: 767px) {
  .left-section h1 {
    text-align: center;
  }
}