.devise-page {
  background: #f5f7fa;
  min-height: 100vh;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.devise-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.devise-container h2 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 24px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 5px;
  color: #555;
  font-size: 14px;
}

.field input[type="email"],
.field input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.field input[type="email"]:focus,
.field input[type="password"]:focus {
  border-color: #4a90e2;
  outline: none;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.field input[type="checkbox"] {
  margin-right: 5px;
}

.actions {
  margin-top: 30px;
  text-align: center;
}

.actions input[type="submit"] {
  background: #4a90e2;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.actions input[type="submit"]:hover {
  background: #357abd;
}

.devise-links {
  margin-top: 20px;
  text-align: center;
}

.devise-links a {
  color: #4a90e2;
  text-decoration: none;
  font-size: 14px;
  margin: 0 10px;
}

.devise-links a:hover {
  text-decoration: underline;
}
