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

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  height: 100vh;
  overflow: hidden;
}

.left-side,
.right-side {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-side {
  background-color: #fff;
}

.right-side {
  background-color: #E50151;
  color: #fff;
}

.login-box {
  background: #fff;
  width: 80%;
  max-width: 400px;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.login-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #E50151;
}

.input-group {
  margin-bottom: 20px;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

.input-group input:focus {
  border-color: #E50151;
  outline: none;
  background-color: #f9f9f9;
}

.login-button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  background-color: #E50151;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #b71d2a;
}

.signup-link {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
}

.signup-link a {
  color: #e63946;
  text-decoration: none;
  font-weight: bold;
}

.signup-link a:hover {
  text-decoration: underline;
}

.logo-dinoni {
  width: 400px;
  height: auto;
}

/* Responsividade */
@media (max-width: 768px) {
  body {
    flex-direction: column;
  }
  .left-side {
    width: 100%;
  }
  
  .right-side {
    width: 100%;
    height: 100%;
  }

  .logo-dinoni {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .login-box {
    margin-bottom: 50%;
    margin-top: 20px;
  }

  .login-title {
    font-size: 20px;
  }

  .login-button {
    font-size: 14px;
    padding: 10px;
  }

  .signup-link {
    font-size: 12px;
  }
}
