* {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f0f2f5;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.form-container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.logo-empresa {
  width: 120px;
  margin-bottom: 20px;
}

form h2 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
  text-align: left;
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
  text-align: left;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 14px;
}

input:focus {
  border-color: #009ee3;
  outline: none;
}

.fila {
  display: flex;
  gap: 12px;
}

.fila div {
  flex: 1;
}

button {
  width: 100%;
  margin-top: 25px;
  background-color: #009ee3;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background-color: #007dc2;
}
.tarjetas {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 20px;
}

.logo {
  height: 24px;
  opacity: 0.7;
  transition: transform 0.3s, opacity 0.3s;
}

.logo:hover {
  transform: scale(1.1);
  opacity: 1;
}

