@font-face {
  font-family: 'Instagram Sans';
  src: url('fonts/InstagramSans-Light.woff2') format('woff2'),
  url('fonts/InstagramSans-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Instagram Sans', sans-serif !important;
    position: relative;
    overflow: hidden;
}



/* Animação de fundo */
@keyframes animarFundo {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.container {
    display: flex;
    height: 100vh;
}

/* Lado esquerdo */
.left-side {
    background: url('fundo_left.png') no-repeat center center;
    background-size: cover;
    flex: 7;
    color: #fdfefe;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Lado direito */
.right-side {
    background: #fff;
    flex: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}




.logo-title h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.logo-title p {
    font-size: 18px;
    color: #fdfefe;
}

/* Ícones verticais */
.icons-vertical {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.icons-vertical img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}


.form-box {
    width: 300px;
    text-align: center;
}

.form-box h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    width: 100%;
    padding: 12px;
    background-color:#2ecc71;
    border: none;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

form button:hover {
    background-color: #239b56;
}

/* Ícones das redes sociais */
.social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}


.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.input-container input {
    width: 100%;
    padding: 12px 12px 12px 40px; /* espaço para o ícone */
    border: 1px solid #ccc;
    border-radius: 5px;
}

.input-container i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
}
