/* @import url(https://fonts.googleapis.com/css?family=Montserrat:400,700); */

body { 
  margin: 0;
  padding: 0;
  font-weight: 600;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:  linear-gradient(rgba(255,255,255,.8), rgba(255,255,255,.5)), url(./logo/vecteezy_elegant-modern-minimal-abstract-wavy-lines_6319422.jpg);
  display: flex;
  flex-direction: column;

}

.main-form {
  /* margin: 14rem 2rem 0rem 2rem; */
  display: flex;
  justify-content: center;
  align-items: center;
}

form { 
  max-width:600px; 
  margin:50px 20px 50px 0; 
}



h1 {
  text-align: center;
  color: #0A2463;
  margin-top: 100px;
}
h2 {
  text-align: center;
  color: #0A2463;
  margin-top: 10px;
}

.feedback-input {
  color:#FB3640;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid #0A2463;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:2px solid #FB3640; }

textarea {
  height: 150px;
  line-height: 150%;
  resize:vertical;
}

[type="submit"] {
  width: 100%;
  background:#0A2463;
  border-radius:5px;
  border:0;
  cursor:pointer;
  color:#FEFFFE;
  font-size:24px;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}
[type="submit"]:hover { background:#CC4949; }


.alert-success, .alert-danger {
    /* display: flex; */
  /* display: none; Hidden by default */
    position: fixed;
    z-index: 1;
    width: 100%; 
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}


.alert-success h1 {
  text-align: center;
  vertical-align: middle;
  line-height: 15rem;       /* The same as your div height */
  font-size: 2rem;
  color: #0a6325;
  word-break: break-all;
}

.alert-danger h1 {
  text-align: center;
  vertical-align: middle;
  line-height: 15rem;       /* The same as your div height */
  font-size: 2rem;
  color: #FB3640;
  word-break: break-all;
}

iframe {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 50px 0 50px 20px;
}