* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.container {
  display: flex;
  width: 800px;
  max-width: 90%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.formulario, .bienvenida {
  flex: 1;
  padding: 40px;
}

.bienvenida {
  background: #978175;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.formulario h2, .bienvenida h2 {
  margin-bottom: 20px;
}

.iconos {
  margin-bottom: 15px;
}

.iconos i {
  margin: 0 10px;
  font-size: 20px;
  cursor: pointer;
}

.input-box {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
}

.input-box i {
  margin-right: 10px;
  color: #888;
}

.input-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
}

.formulario a {
  font-size: 12px;
  color: #695247;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  background: #695247;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background: #b37457;
}
