html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f0f2f5;
  font-family: 'Helvetica', sans-serif;
}

  #content{
  flex: 1; 
}


#stxLogo {
    position: relative;
    top: 175px;
    width: 480px;
    left: 50%;
    transform: translateX(-50%);
}

#fbText {
    font-size: x-large;
    text-align: center;
    font-style: italic;
    position: relative;
    top: 180px;
}


#footer {
  display: flex;
  align-items: flex-end; 
  justify-content: center;
  height: 50px;
  position: relative;
  padding: 0;
  margin: 0;
}

#footer-text {
  position: static; 
  margin: 0;
  padding: 0;
}


.center{
    margin-top: 100px;
    height: 600px;
    width: 50%;
    float: left;  
}

#noticesText {
    width: 30%;
    text-align: center;
    position: absolute;
    left: 56%;
}


.card{
    margin-left: 20%;
    margin-top: 68px;
    width: 400px;
    height: 330px;
    display: flex;
    justify-content: center;
    box-shadow: 10px 5px 15px 5px gray;
    background-color: white;
    border-radius: 10px;
    padding: 40px 12px 12px 12px;
}


/* style eye icon */
.log-container .toggle-password {
  position: absolute;
  right: 12px;       
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  font-size: 18px;
  padding: 4px;
}


.submit_btn{
    width: 100%;
    height: 50px;
    background-color: #1877f2;
    color: white;
    font-weight: bold;
    font-size: large;
    border-radius: 6px;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid gray;
    box-shadow: 1px 1px 1px 1px gray;
}


.submit_btn:hover{
  background-color: #004fb8;
}



#loginSelections {
    font-size: 14px;
    position: relative;
    top: -12px;
   
  }
  #remember_yes, #remember_no{
    cursor: pointer;
    display: none;
    
    }

  .rmLabel{
    color: #133e5e;
    cursor: pointer;
    font-size: 12px;
   }


   [type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #133e5e;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid black;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #1877f2;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#aPan a:link,
#aPan a:visited,
#aPan a:hover {
    color: #2c70a2;
    font-size: small;
}

#aPan {
width: 40%;
margin-left: 20%;
margin-top: 20px;
text-align: center;

}

@media only screen and (min-width: 1001px) and (max-width:1300px) {

    .card {
        width: 300px;
        height: 300px;;
    }
        #stxLogo{
            width: 320px ;
        }
        #noticesText{
            width: 416px;
        }
        #fbText{
          font-size: large;
        }
        #emailText{
  font-size: 12px;
}
.log-header{
  font-size: 20px;
}
}

.forgot-password {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #1877f2;       /* match your theme color */
  text-decoration: none;
  cursor: pointer;

}


.forgot-password:hover {
  text-decoration: underline;
}

.log-container input {
  width: 100%;
  border: 1px solid gray;
  border-radius: 6px;
  font-size: large;
  line-height: 48px;
  transition: border-color .2s, box-shadow .2s;
}
.log-container .label2 {
top: 40%;
}


/* eye icon */
.reset-container .toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #888;
  padding: 4px;
}
.reset-container .toggle-password:hover {
  color: #333;
}



.login-form-wrapper {
  margin: 24px auto;
  width: 480px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}

/* Form layout */
.login-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 86%;
  gap: 24px;
}
.small-gap{
  gap:16px !important;
}

#resetform {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 86%;
  gap:24px;
}

/* Header text */
.log-header {
  text-align: center;
  width: 100%;
  font-size: 22px;
  font-weight: 600;
}

/* Floating-label field */
.log-container {
  position: relative;
  width: 100%;
}
.reset-container {
  position: relative;
  width: 100%;
  margin-bottom: 1rem; /* spacing between fields */
}


.log-container input::placeholder {
  color: transparent;
}

.log-container label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 4px;
  color: #888;

  font-size: 1rem;
  pointer-events: none;
  transition: all .2s;
}



.log-container input:focus {
  outline: none;
  border-color: #004fb8;
  box-shadow:   0 0 3px 3px rgba(3, 85, 192, 0.3);
}
.log-container input:focus + label,
.log-container input:not(:placeholder-shown) + label,
.reset-container input:not(:placeholder-shown) + label {
  top: 0;
  transform: translateY(-125%);
  font-size: 12px;
  color: #333;
}

