body {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  position: relative;
  background-image: url(../../assets/images/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  line-height: 1.5;
  font-weight: 400;
  font-family: "Lato", Arial, sans-serif;
}

.heading-section {
  color: #fff;
  padding-top: 112px;
  font-size: 28px;
}

.text-center {
  text-align: center !important;
}

.container {
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    width: 383px;
    height: 383px;
    border-radius: 5px;
}

.container-title{
    font-size: 28px;
    font-weight: 300;
    color: #fff;
}

.form p{
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

.email-input{
    background: transparent;
    border: none;
    height: 50px;
    width: 320px;
    color: white !important;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.email-input::placeholder{
    color: rgb(230, 230, 230);
    font-size: 14px;
    padding: 5px;
}

.email-input:hover, .email-input:focus {
  background: transparent;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.4);
}




.form-actions{
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.submit-btn{
    cursor: pointer;
    border-radius: 40px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 15px;
    text-transform: uppercase;
    background: #fbceb5 !important;
    border: 1px solid #fbceb5 !important;
    color: #000 !important;
    width: 280px;
    height: 50px;
    transition: 0.3s;
}

.submit-btn:hover{
  background: #c29e8a !important;
  border: 1px solid #c29e8a !important;
}

.form a{
    text-decoration: none;
    font-size: 16px;
    color: #fbceb5;
    transition: 0.3s;
}

.form a:hover{
  color: #c29e8a
}
