@import url("reset.css");

body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
    color:#333
}

p {
    padding: 10px;
    font-size: 16px;
    font-style: normal;
    text-align: center;
}

#wrapper {
    margin: 0 auto;
    width: 800px;
}

#header {
    height: 75px;
    width: 800px;
    background: #50bcc6;
}

#content {

    background: #FFFFFF;
}

#footer {
    height: 40px;
    width: 800px;
    background: #50bcc6;
    clear: both;
}

#custom_input {
	display: flex;
	align-items: center;
	position: relative;
	max-width: 100%;
}

.input {
	font-size: 18px;
	padding: 5px 10px;
	margin-top: 15px;
    margin-bottom: 15px;
	width: 100%;
	outline: none;
	background: #FFFFFF;
	color: #000000;
	border: 1px solid #50bcc6;
	border-radius: 5px;
	transition: .3s ease;
}

.input:focus {
	background: #F2F2F2;
	border: 1px solid #5A7EC7;
	border-radius: 10px;
}

.input::placeholder {
	color: #DDDDDD;
}
.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: center;
}

.flex-items:nth-child(1) {
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 0;
}

.sbutton {
  font-family: verdana;
  font-weight: bold;
  color: #fff !important;
  font-size: 14px;
  padding: 9px 40px;
  margin-top: 5px;
  margin-bottom: 15px;
  width: 100%;
  border-radius: 7px;
  border: 1px solid #3866A3;
  background: #50bcc6;
}
.sbutton:hover {
  color: #14396A !important;
  background: #468CCF;
  background: linear-gradient(to top, #468CCF, #63B8EE);
}