

body {

    
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.content-wrapper {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2); 
  border-radius: 0; 
  overflow: hidden; 
  display: flex; 
  width: 100%; 
}

.laptop {
  width: 60%; 
  height: auto;
  border: 5px solid #ffcc66; 
}

.text-container {
  width: 40%; 
  padding: 20px;
  background-color: #fff; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
}

h1 {
  color: #333;
  font-size: 2em;
  margin-bottom: 20px; 
  margin-top: 0; 
}

.login-button {
  display: block;
  margin-bottom: 20px; 
  padding: 25px 50px; 
  background-color: #007bff;
  color: #fff;
  font-size: 1.5em; 
  text-decoration: none;
  border-radius: 15px; 
  transition: background-color 0.3s ease;
  cursor: pointer; 
}

.login-button:hover {
  background-color: #0056b3;
}

.or-text {
  color: #333;
  margin-bottom: 20px; 
}

.small {
  color: #999;
}

.emergency-login {
  padding: 15px 30px; 
  font-size: 1em; 
  margin-top: 20px; 
}


#loginForm {
  display: none;
}


#loginForm input[type="email"],
#loginForm input[type="password"] {
  margin-bottom: 10px;
  padding: 10px 10px 10px 40px; 
  width: calc(100% - 20px); 
  max-width: 250px; 
  border: 1px solid #ccc;
  border-radius: 5px;
  background-repeat: no-repeat; 
  background-position: left center; 
}


#loginForm input[type="email"] {
  background-image: url("/images/user-icon.png");
  
  background-size: 20px; 
}

#loginForm input[type="password"] {
  background-image: url('/images/lock-icon.png'); 
  background-size: 20px; 
}

#loginForm button[type="submit"] {
  margin-bottom: 10px;
  padding: 10px; 
  width: calc(100% - 20px); 
  max-width: 250px; 
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  text-align: center; 
}

#loginForm button[type="submit"]:hover {
  background-color: #0056b3;
}


.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}


.error-message {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
