/* assets/css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
}

body, html {
  height: 100%;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

/* Login Page Background */
.login-bg {
  background: linear-gradient(135deg, #1e90ff, #8a2be2);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Card Styling */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Navbar Overrides */
.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Table Styling */
.table-responsive {
  margin-top: 20px;
}

/* Form Input Focus */
.form-control:focus, .form-select:focus {
  box-shadow: none;
  border-color: #8a2be2;
}
