/* ---------------------------------------
   SOLAR PT 8.61 Visual Refinements
   --------------------------------------- */

/* Global brand and base styles */
:root {
  --sbu-red: #990000;
  --sbu-dark-red: #6B000D;
  --sbu-black: #000;
  --sbu-light-gray: #f5f5f5;
}

body {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
}

form .row {
  margin-left: 0;
  margin-right: 0;
}

form .row > div {
  box-sizing: border-box;
}

/* Hero container layout */
.hero-beyond {
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  /*padding-top: 3rem;*/
}

/* Background image -> Prisms 8/26/25 */
.hero-beyond{
    background-image: url('../images/SBU-PRISM-Full-RGB_2.svg');
}

/* Login box */
.banner-content-text {
  background-color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 2.5em;
  margin: 0 auto;
  border-radius: 10px;
  max-width: 740px;
  text-align: left;
  position: relative;
  top: -2vh;
  animation: fadein 0.5s ease;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Header */
.banner-content-text h1 {
  text-align: center;
  margin-bottom: 1.5em;
  font-size: 2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}

/* Labels */
.psloginlabel {
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  display: block;
}

/* Inputs */
.pslogineditbox {
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  height: auto;
  border-radius: 4px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pslogineditbox:focus {
  border-color: var(--sbu-red);
  box-shadow: 0 0 0 2px rgba(153, 0, 0, 0.3);
  outline: none;
}

/* Sign In Button */
.psloginbutton {
  background-color: var(--sbu-red);
  color: #fff;
  border: none;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.1s ease;
  width: 100%;
  margin-top: 1em;
}

.psloginbutton:hover {
  background-color: var(--sbu-dark-red);
  cursor: pointer;
}

.psloginbutton:active {
  transform: scale(0.98);
}

.psloginbutton:focus {
  outline: 3px solid #d52027;
  outline-offset: 2px;
}

/* Error icon spacing */
#error_img {
  display: block;
  margin: 0 auto 1em auto;
}

/* Legal disclaimer */
.banner-content-text p {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Footer spacing tweaks */
footer .top-footer {
  /*padding-top: 2em;*/
}

.bottom-footer {
  /*padding: 1.5em 0;*/
}

/* Responsive layout */
@media screen and (max-width: 767px) {
  .hero-beyond {
    align-items: flex-start;
    padding: 3em 1em 2em 1em;
  }

  .banner-content-text {
  	margin: 1.5em auto;
  	padding: 1.5em 1em;
  	top: 0;
  	width: 100%;
  	box-sizing: border-box;
  }

  .psloginbutton {
    font-size: 1rem;
    padding: 0.75em;
  }
}

@media screen and (max-width: 576px) {
  form .row {
    display: flex;
    flex-direction: column;
  }

  form .row > div {
    width: 100% !important;
    max-width: 100%;
    padding: 0;
    margin: 0 0 0.75em 0;
  }

  form .row > div:last-child {
    margin-top: -0.5em;
    text-align: left;
  }

  form .row a {
    display: inline-block;
    margin-top: 0.5em;
  }
}