/* css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

/* Agrega esto al inicio de tu archivo CSS (admin-style.css o similar) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

form label {
  font-size: 16px;
  color: #555;
  display: block;
  margin-bottom: 5px;
}

form input, form textarea, form select {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

form input:focus, form textarea:focus, form select:focus {
  border-color: #4285f4;
  outline: none;
}

button {
  background-color: #4285f4;
  color: #fff;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

button:hover {
  background-color: #357ae8;
}

@media screen and (max-width: 600px) {
  .container {
    margin: 15px;
    padding: 15px;
  }
  form input, form textarea, form select {
    padding: 12px;
  }
}