*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  font-weight: normal;
}

h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
}

p {
  font-size: 30px;
  line-height: 1.2;
}

section {
  background: url('../beautiful.jpg') no-repeat center center;
  background-size: cover;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(120,136,155,0.6);
  z-index: 1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  height: 100vh;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.col-md-6,
.col-md-12 {
  padding: 10px;
}

.col-md-12 {
  width: 100%;
}

.col-md-6 {
  width: 50%;
}

.flex {
  display: flex;
  flex-direction: column;
}

.gap-25 {
  gap: 25px;
}

.full-vh {
  height: 100vh;
}

.row.full-vh {
  padding: 40px;
}

.logo {
  max-width: 350px;
}

.light-text {
  color: #fff;
}

.border {
  background: #fff;
  border-radius: 30px;
  padding: 60px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  font-size: 15px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background-color: #fff;
  box-sizing: border-box;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  padding-right: 35px;
  font-size: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='5' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23333' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

input[type="submit"] {
  background: #e11a27;
  color: #fff;
  padding: 15px;
  border: none;
  text-transform: uppercase;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

input[type="submit"]:hover {
  background: #c5121d;
}

.error {
  color: red;
  font-size: 14px;
}

@media(max-width: 1024px) {
  .container {
    overflow: scroll;
  }

  h2 {
    font-size: 40px;
  }

  p {
    font-size: 25px;
  }

  .border {
    padding: 30px;
  }
}

@media(max-width: 800px) {
  .container > .row {
    gap: 25px;
  }

  .col-md-6 {
    width: 100%;
  }

  .light-text {
    text-align: center;
  }

  h2 {
    font-size: 30px;
  }

  p {
    font-size: 20px;
  }

  .border {
    padding: 20px;
  }
  .full-vh {
    height: auto;
}
section,.container{
    height:auto;

}
.container{
    overflow:auto;
}

  .logo {
    text-align: center;
    margin: auto;
  }
}
