/* Core Styles for SecurePanel FileHub */

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f5f7fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  width: 330px;
  background-color: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.logo {
  max-width: 150px;
  margin-bottom: 20px;
}

h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  box-sizing: border-box;
}

button {
  background-color: #2d72fc; /* Branded FileHub blue */
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease-in-out;
}

button:hover {
  background-color: #1f5de0;
}
