body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.login-container {
  max-width: 520px;
  height: 720px;
  margin: 10px auto;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  box-sizing: border-box;
  position: relative;
}

.black-extension {
  width: 100%;
  height: 17px;
  background-color: #000;
}

.content-container {
  max-width: 500px;
  height: 90%;
  margin: 20px auto;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}

.user-icon-gray {
  color: #aaaaaa;
}

.logo {
  width: 50px;
  margin-bottom: 20px;
}

h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

p {
   font-size: 26px;
  margin-bottom: 20px;
  left: 2p;
}

.user-email-container {
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 50px;
  padding: 10px;
  margin: auto;
  text-align: center;
  width: 250px;
  height: 20px;
  transition: background-color 0.3s ease;
  overflow: hidden; 
}

.user-email-container:hover {
  background-color: #e0e0e0; 
}

.user-email-back {
  margin-right: 12px;
  cursor: pointer;
  color: rgb(0, 0, 0);
  width: fit-content;
}

.fa-chevron-right {
  color: rgb(235, 154, 3);
  font-size: 12px;
}

.user-email-icon {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  background-color: transparent; 
  transition: background-color 0.3s ease;
}

.user-email-container:hover .user-email-icon {
  background-color: #FFFFFF; 
}

.user-email {
  font-weight: bold;
  color: #333;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 250px; 
}

.input-container {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
}

.input-container input {
  width: 100%;
  padding: 10px 0;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
}

.input-container label {
  position: absolute;
  top: 10px;
  left: 0;
  color: #7c7c7c;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-container .input-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #0a0909;
}

.input-container .input-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: rgb(0, 0, 0);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.input-container input:focus + label,
.input-container input:valid + label {
  top: -20px;
  font-size: 12px;
  color: rgb(0, 0, 0);
}

.input-container input:focus ~ .input-underline::after {
  transform: scaleX(1);
}

.login-container button {
  background: black;
  color: white;
  padding: 12px;
  width: 175px;
  height: 55px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
  margin: 0 auto;
  display: block;
}

button:hover {
  background: #333;
}

.forgot-id {
  display: block;
  margin-top: 20px;
  color: rgb(6, 6, 6);
  text-decoration: none;
}

.toggle-eye {
  position: absolute;
  right: 0;
  top: 10px;
  cursor: pointer;
  font-size: 18px;
  color: rgb(235, 154, 3); /* Orange color */
  padding: 5px;
  background-color: transparent; /* Transparent background */
}

.toggle-eye i {
  color: rgb(235, 154, 3); /* Ensure the icon itself is orange */
}

#credentials-display {
  display: none;
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Professional footer styling */
footer {
  margin-top: 80px;
  padding: 25px 20px;
  background: #000;
  color: #f9f8f8;
  text-align: center;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0 5px;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer p {
  color: #999;
  font-size: 12px;
  margin: 0;
  display: inline-flex;
  align-items: center;
}

footer p:before {
  content: "|";
  margin: 0 10px;
  color: #666;
}


.instruction {
  font-weight: 700;
  margin-right:70px;
  margin-top: 50px;
}

.title {
 margin-top: 0px;
}