*,*::before,*::after{
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#f4f6f8;
  margin:0;
}

.login-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:100vh;
}

.container{
  background:white;
  padding:40px;
  border-radius:10px;
  box-shadow:0 4px 20px rgba(0,0,0,0.1);
  width:320px;
}

h1{
  margin-top:0;
  text-align:center;
}

input{
  width:100%;
  padding:10px;
  margin-top:10px;
  margin-bottom:20px;
  border:1px solid #ccc;
  border-radius:6px;
  box-sizing:border-box;
}

button{
  width:100%;
  padding:12px;
  background:#38608F;
  border:none;
  color:white;
  font-weight:bold;
  border-radius:6px;
  cursor:pointer;
}

button:hover{
  background:#2e4f73;
}

#error{
  color:red;
  text-align:center;
  margin-top:10px;
}

.page-body{
  margin:0;
  background:#f4f6f8;
  min-height:100vh;
  font-family:Arial, sans-serif;
}

.page-shell{
  padding:32px 24px;
  width:100%;
  max-width:100%;
  margin:0 auto;
}

.panel{
  background:white;
  padding:40px;
  border-radius:10px;
  box-shadow:0 4px 20px rgba(0,0,0,0.1);
  width:100%;
  max-width:1400px;
  margin:0 auto;
}

.panel-wide{
  max-width:1400px;
}


.top-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:24px;
}

.top-row h1{
  margin:0;
  text-align:left;
}

.actions-row{
  display:flex;
  gap:12px;
}

.secondary-button{
  width:auto;
  background:#e5e7eb;
  color:#111827;
}

.secondary-button:hover{
  background:#d1d5db;
}

.field-group{
  margin-bottom:20px;
}

.field-label{
  display:block;
  margin-bottom:8px;
  font-weight:bold;
  color:#1f2937;
}

.two-column-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.section-heading{
  margin-top:32px;
  margin-bottom:16px;
  font-size:20px;
}

.hidden{
  display:none;
}

.message{
  margin-top:16px;
  text-align:center;
}

.success-message{
  color:green;
}

.error-message{
  color:red;
}

select,
textarea{
  width:100%;
  padding:10px;
  margin-top:10px;
  margin-bottom:20px;
  border:1px solid #ccc;
  border-radius:6px;
  box-sizing:border-box;
}

textarea{
  min-height:120px;
  resize:vertical;
}