html {
    height: 100%;
    width: 100%;
}

body {
 	font-family: sans-serif, Helvetica, Proxima Nova, Open Sans;
    color:#FFFFFF;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    background-color:#000;
}

.login {
    margin:0 auto;
    left: 2px;
    right: 0px;
    background-image: linear-gradient(#DFDFDF 5%, #676767 100%);
    max-width: 450px;
    padding-top: 7px;
    padding-bottom: 7px;
}

input[type="password"],
input[type="text"],
input[type="email"] {
    box-sizing: border-box;
    color: #696969;
    height: 30px;
    margin: 0;              
    padding: 15px;
    width: 100%;
    font-size: 18px;
    border: 1px solid #999;
    border-radius: 4px;
    background-color: #FFF;
}

.login-field {
    position: relative;
    width: 325px;      /* both fields same width */
    margin: 10px auto; /* centers the whole box */
}

/* extra right padding ONLY for password to make room for eye */
.login-field-password input {
    padding-right: 45px;
}

/* Centering the password checkbox */
.show-password-checkbox {
    display: flex;
    align-items: center;
    color: #FFF;
    margin-top: 5px;  /* Reduced the margin to remove extra space */
    width: 100%;
    margin-left: 0;
	margin-bottom: 20px;
}

.checkbox {
	width:17px;
	height:17px;
	margin-right:5px;
}

/* Input box styling */
.login-input {
    width: 100%;
    padding-right: 15px;  /* Adjust padding if needed */
    box-sizing: border-box;
    font-size: 18px;
    border: 1px solid #999;
    border-radius: 4px;
    background-color: #FFF;
    margin-bottom: 10px;  /* Ensure input has consistent spacing */
}

/* Remove extra space from password field and label */
.login-field-password {
    margin-bottom: 0px;  /* Remove bottom margin to eliminate gap */
}

/* Password input with no eye icon, just the checkbox */
.login-input {
    width: 100%;
    padding-right: 15px; /* adjust to fit label */
    box-sizing: border-box;
    font-size: 18px;
    border: 1px solid #999;
    border-radius: 4px;
    background-color: #FFF;
    margin-bottom: 10px;
}

select {
  border: 1px solid #a1a3a3;
  border-radius: 4px;
  box-shadow: 0 1px #fff;
  box-sizing: border-box;
  color: #696969;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: box-shadow 0.3s;
  width: 85%;
  font-size:18px;
}

/* Focus state */
.login-input:focus {
    box-shadow: 0 0 4px 1px #007DD7;
    outline: none; /* Disable default outline */
    border: 1px solid #007DD7; /* Optional: change border color */
}

/* For password input specifically, make sure focus glow is visible */
.login-field-password input:focus {
    box-shadow: 0 0 4px 1px #007DD7;
    border: 1px solid #007DD7; /* Optional: change border color */
}

.show-password {
  display: block;
  height: 16px;
  margin: 26px 0 0 28px;
  width: 87px;
}

.button {
	font-family: sans-serif, Helvetica, Proxima Nova, Open Sans;
    font-weight:bold;
    background:linear-gradient(to bottom, #FFFFFF 5%, #FFFFFF 100%);
	background-color:#FFFFFF;
	border-radius:15px;
	border:1px solid #494949;
	display:inline-block;
	cursor:pointer;
	color:#494949;
	font-size:18px;
	text-decoration:none;
    min-width:240px;
}

.shadow {
  background: #000;
  border-radius: 12px 12px 4px 4px;
  box-shadow: 0 0 20px 10px #000;
  height: 12px;
  margin: 30px auto;
  opacity: 0.2;
  width: 270px;
}


input[type="submit"]:active {
  top:3px;
  box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #31524d, 0px 5px 3px #999;
}
