Untitled

 avatar
unknown
plain_text
a year ago
1.2 kB
5
Indexable
/* LoginStyles.css */

/* Container styles */
.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #ecf0f1; /* Light gray background */
}

/* Title styles */
.login-title {
  font-size: 2em;
  color: #3498db; /* Blue */
  margin-bottom: 20px;
}

/* Form styles */
.login-form {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

/* Label styles */
.login-label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2em;
}

/* Input styles */
.login-input {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #bdc3c7; /* Light gray border */
  border-radius: 5px;
  margin-bottom: 15px;
}

/* Error message styles */
.login-error {
  color: #e74c3c; /* Red */
  margin-bottom: 15px;
}

/* Button styles */
.login-button {
  background-color: #3498db; /* Blue */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.login-button:hover {
  background-color: #2980b9; /* Darker blue on hover */
}
Editor is loading...
Leave a Comment