/* style.css - clean layout inspired by Adobe XD wireframe */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  background-image: url('/intra/suitsc04/images/bluelines.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #333;
  line-height: 1.6;
}

.centered-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.login-banner {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
}


.banner {
  text-align: center;
  padding: 6rem 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 700px;
  box-shadow: none;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 2fr;
  row-gap: 0.8rem;
  column-gap: 1rem;
  text-align: left;
  margin-top: 2rem;
}

.two-column div {
  padding: 0.3rem 0;
}

.label {
  font-weight: bold;
  color: #003366;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

header.page-header {
  background-color: #003366;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  font-size: 1.75rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav {
  background-color: #002244;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: flex-end;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

h2.underline-header {
  font-size: 1.5rem;
  border-bottom: 2px solid #ccc;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.box {
  background: #fff;
  padding: 1.5rem;
  margin-top: 1rem;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.address-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.address-form input,
.address-form select,
.address-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.button,
input[type="submit"] {
  background-color: #0055aa;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.button:hover,
input[type="submit"]:hover {
  background-color: #003d80;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

table th,
table td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: left;
}

table th {
  background-color: #eee;
}

a.action-link {
  color: #0055aa;
  text-decoration: none;
  font-weight: 600;
}

a.action-link:hover {
  text-decoration: underline;
}

/* Login Form Styling */
.login-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.login-wrapper img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

.login-wrapper form {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.login-wrapper label {
  font-weight: bold;
}

.login-wrapper input[type="text"],
.login-wrapper input[type="password"] {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-wrapper input[type="submit"] {
  background-color: #0055aa;
  color: white;
  border: none;
  padding: 0.6rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.login-wrapper input[type="submit"]:hover {
  background-color: #003d80;
}

