@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.body {
    font-family: 'Open Sans', sans-serif;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
  	height: 73vh;
    background-color: #ecf0f1;
}
.content {
    background-color: #fff;
    border-radius: 15px;
    width: 960px;
    height: 90%; /* caixa do content era 50% e mudei para 70% */
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.content::before {
    content: "";
    position: absolute;
    background-color: #87cefa;
    width: 40%;
    height: 100%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    left: 0; /* definição para o primeiro painel seja bem-vindo = 0% para o segundo painel o valor é 60% */
}
.title {
    font-size: 28px;
    font-weight: bold;
    /* text-transform: capitalize; */
}
.title-primary {
    color: #fff;
}
.title-second {
    color: #87cefa;
}
.description {
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
}
.description-primary {
    color: #fff;
}
.description-second {
    color: #7f8c8d;
}
.btn {
    border-radius: 15px;
    text-transform: uppercase;
    color: #fff;
    font-size: 10px;
    padding: 10px 50px;
    cursor: pointer;
    font-weight: bold;
    width: 150px;
    align-self: center;
    border: none;
    margin-top: 1rem;
}
.btn-primary {
    background-color: transparent;
    border: 1px solid #fff;
    transition: background-color .5s;
}
.btn-primary:hover {
    background-color: #fff;
    color: #87cefa;
}
.btn-second {
    background-color: #87cefa;
    border: 1px solid #87cefa;
    transition: background-color .5s;
}
.btn-second:hover {
    background-color: #fff;
    border: 1px solid #87cefa;
    color: #87cefa;
}
.btn-tamanho{
	width: 250px;
}
.first-content {
    display: flex;
	/*position: absolute; */
	/* display: none; */
}
.first-content .second-column{
	z-index: 11;
}
.first-column {
    text-align: center;
    width: 40%;
	z-index: 10;
}
.second-column {
	width: 60%;
    display: flex;
    flex-direction: column;
	text-align: center;
    align-items: center;
}
.form {
    display: flex;
    flex-direction: column;
    width: 55%;
}
.form input {
    height: 45px;
    width: 100%;
    border: none;
    background-color: #ecf0f1;
}
.input-form{
	margin-left: 8px;
}
.label-input {
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
    margin: 8px;
}
.icon-modify {
    color: #7f8c8d;
    padding: 0 5px;
}