
/* Move the login container down (correct selector) */
.login-container {
  padding-top: 50px; /* adjust as needed */
}



body {
  background-color: #fdfbf8;
}

body h1 {
  font-family: 'Segoe UI', sans-serif;
  font-weight: bold;
  font-size: 26px;
}

.form-heading {
  text-align: left;
  padding-left: 0;
  margin-left: 0;
}

.form-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 720px;      /* overall width of the white card */
  margin: 0 auto 40px;   /* center horizontally + a bit more space below */
  padding: 80px 80px;    /* more inner white space (top/bottom, left/right) */



}

/* Keep the actual form content narrower so padding is visible */
.form-container form {
  max-width: 600px;
  padding-left:30px;
  padding-right:30px;
  
}

/* Slightly more space between the field rows */
.form-container .mb-3 {
  margin-bottom: 2rem;   /* more space between Username/Password rows */
}

/* More space under the heading block */
.form-container .mb-4 {
  margin-bottom: 2.5rem;
}

/* Space above the login button */
.form-container .btn-primary {
  margin-top:20px;
}

.form-heading {
  padding-left:30px;
  padding-right:30px;
}

.btn-primary {
  background-color:2D284C;
  border: none;
  padding: 10px 0;
  font-family:'Segoe UI', sans-serif;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-label {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

/* Style for form inputs and placeholders */
.form-control {
  font-family:'Segoe UI', sans-serif;
  font-size: 12px;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  border: 1px solid #ced4da;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Placeholder styles for different browsers */
::placeholder,
::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #aaa;
}

/* Logo styling */
.logo-container {
  display: flex;
  justify-content: center;    /* center horizontally */
  align-items: center;         /* center vertically within container */
  transform: none;             /* remove manual offset that breaks centering */
  margin-bottom: 16px;
  padding-right:25px;         /* spacing from form */
}

.pexor-logo {
  display: block;
  width: 100%;           /* allow Bootstrap .img-fluid to work */
  max-width: 200px;      /* cap size on large screens */
  height: auto;          /* keep aspect ratio */
  padding: 0;
}
