* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    font-family: Comfortaa;
  }

  .container {
    width: 70% !important;
  }
  
  .contain {
    display: flex;
    height: 100vh;
    width: 100vw;
  }
  
  .image-side {
    flex: 6;
  }
  
  .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .login-side {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1D1D1D;
  }
  
  .login-form {
    width: 80%;
    max-width: 400px;
    padding: 2rem;
    text-align: left;
    border-radius: 10px;
    background-color: #fff;
  }

  .login-form label {
    margin: 10px 0 0 0;
  }
  
/* Estilo geral para os inputs */
.input-container {
    position: relative;
    margin-bottom: 15px;
}

.input-container input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
}

/* Ícones SVG */
.input-container .input-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    fill: #cecece;
}

/* Estilo para input focado */
.input-container input:focus {
    border-color: #fd5a17;
    outline: none;
    box-shadow: 0 0 5px rgba(253, 90, 23, 0.5);
}

#toggle-password {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 10px;
  padding: 0;
  display: flex;
  align-items: center;
  outline: none;
}

.input-container i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #cecece;
}

.input-container .input-icon-left {
  left: 10px; /* Ícone à esquerda */
}

.input-container .input-icon-right {
  right: 0px; /* Ícone à direita */
}

/* Estilo do botão */
button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #fd5a17;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #e04e12;
}

button[type="submit"]:focus {
  outline: none;
}
  
  .login-form .btn-submit button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    background-color: #fd5a17;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
  }
  
  .login-form button:hover {
    background-color: #fd5817bb;
  }

  .forgot-password {
    text-align: center;
    margin: 15px 0;
  }

  .forgot-password a {
    color: #fd5a17;
  }

  .forgot-password a:hover {
    color: #6B6F80;
  }

  .sign-up span {
    color: #1D1D1D;
  }

  .sign-up a {
    color: #FD5A17
  }

  .sign-up a:hover {
    color: #6B6F80
  }
  
  @media screen and (max-width: 768px) {
  .contain {
    flex-direction: column;
  }

  .image-side {
    display: none; 
  }

  .login-side {
    flex: none;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1D1D1D;
  }

  .login-form {
    width: 90%;
    max-width: 400px;
  }
}

  