﻿main {
  height: calc(100vh - 120px);
  width: 100vw;
  /*background: url('/Account/BackgroundImage');*/
  background-color: white;
  position: absolute;
  overflow-y: scroll;
}

#login-box {
  margin-top: 5em;
}

#floating-container {
  position: relative;
  transform: translateY(-50%);
  top: 50%;
  padding-top: 1em;
  padding-left: 1em;
  padding-right: 1em;
}

#update-box {
  margin-top: 1%;
}

.box {
  box-shadow: 5px 10px 18px #888888;
  border-radius: 5px;
  max-width: 750px;
  margin: 0 auto;
}

#loginForm {
  margin: 2em;
}

#updateForm {
  margin-top: 2em;
  margin-left: 2em;
  margin-right: 2em;
}

#loginForm .input-group {
  width: 50%; /* This should be making your input groups 50% width and centered */
  margin: 0 auto; /* This centers the input-group block */
}

/* Apply similar styling to the button */
#loginForm button,
#LoginSubmit {
  width: 50%; /* Set button width to 50% */
  display: block; /* Make it a block element to allow auto margins for centering */
  margin-left: auto; /* Center the button */
  margin-right: auto; /* Center the button */
}

#fpwContainer {
  margin: 0.5em; /* This existing margin is fine, ensure it's not overridden by button margin if too close */
  /* Consider adding margin-top to this specifically if button's new margin collapses */
}

/* Icon Styling - These were previously commented out, keeping them that way */
/*
.inner-addon {
    position: relative;
}

.inner-addon .fas {
    position: absolute;
    padding: 10px;
    pointer-events: none;
    left: 0px;
}

.inner-addon input {
    padding-left: 35px;
}
*/

.card-header {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.card-header-info {
  background: rgba(23, 162, 184, 0.4);
}

.card-header-warning {
  background: rgba(255, 193, 7, 0.4)
}
