body {  
  background: repeating-linear-gradient(to bottom right, #c03782, #5964c7,rgb(239, 236, 236),#b9508a,#b24983);  
  display: flex;               /*211,184,184*/  
  justify-content: center;                                                    
  align-items: center;  
  height: 100vh;  
  margin: 0;  
  font-family: Arial, sans-serif;  
} 
  
.login-card {  
  background:repeating-linear-gradient(to bottom right,rgb(236, 231, 231)transparent 80%,rgb(165, 162, 162)transparent 80%);  
  border-radius: 70px;  
  padding: 25px;  
  box-shadow:  6px 5px 6px 6px rgba(0, 0, 0, 0.1); 
  width: 480px;
  height: 250px;
  position:center;
  
}  
img{
  border-radius: 80%;
  height: 70px; 
  width: 100px;
  background-color:white ;
}
  
.icon-container {
  width: 65px;
  height: 60px;

  border-radius: 50%;
  margin: -50px auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  float: center;
  position: center;
  top: -180px;
  
  transform: translateX(10%);
}


.icon-container img {
  width: 90px;
  height: 80px;
  background-color: rgb(45, 45, 117);
} 
form div {
  display: flex;
  align-items: center;
  justify-content: left;
}

form label {
  margin-left: 10px;
  font-size: 14px;
  color: #555;
}


  
input {  
  width: 80%;  
  padding: 15px; 
  gap: 10px;
  margin-bottom: 10px;
  color :whitesmoke; 
  border: 1px solid #ccc;  
  border-radius: 15px; 
  background-color: #293c79; 
}  
  
button {  
  width: 100%;  
  padding: 10px;  
  background: #293c79;  
  color:whitesmoke;  
  border: none;  
  border-radius: 5px;  
  cursor: pointer;  
}  
  
.remember-forgot {  
  display: flex;  
  justify-content: space-between;  
  align-items: center;  
  margin-bottom: 10px;  
}  
  
#forgotPassword {  
  text-decoration: none;  
  color: #1e40af;  
}  
  
#forgotPassword:hover {  
  text-decoration:underline;
}