/* Material Design Login Form CSS */
/* Google Fonts - Roboto for Material Design */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
/* Base Styles */
:root {
  --primary-color: #2196F3;
  --primary-light: #bb86fc;
  --primary-dark: #3700b3;
  --secondary-color: #03dac6;
  --background: #f5f5f5;
  --surface: #ffffff;
  --error: #b00020;
  --on-primary: #ffffff;
  --on-secondary: #000000;
  --on-background: #000000;
  --on-surface: #000000;
  --on-error: #ffffff;
  --shadow-1: 0 2px 1px -1px rgba(0,0,0,0.2), 0 1px 1px 0 rgba(0,0,0,0.14), 0 1px 3px 0 rgba(0,0,0,0.12);
  --shadow-2: 0 3px 3px -2px rgba(0,0,0,0.2), 0 3px 4px 0 rgba(0,0,0,0.14), 0 1px 8px 0 rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--on-background);
  background-color: var(--background);
  line-height: 1.6;
}

.body--login {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(45deg, rgba(98, 0, 238, 0.05), rgba(3, 218, 198, 0.05));
}

.app-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.main-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.form-container {
  background-color: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow-2);
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

label {
  display: block;
  color: var(--on-surface);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

input[type=email],
input[type=password] {
  width: 100%;
  padding: 0.8rem 1rem;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  background-color: transparent;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

input[type=email]:focus,
input[type=password]:focus {
  border-bottom: 2px solid var(--primary-color);
}

input[type=checkbox] {
  margin-right: 0.5rem;
  accent-color: var(--primary-color);
}

button[type=submit] {
  background-color: var(--primary-color);
  color: var(--on-primary);
  border: none;
  border-radius: 4px;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: var(--shadow-1);
  transition: var(--transition);
}

button[type=submit]:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-2);
}

button[type=submit]:active {
  transform: translateY(1px);
}

/* For the links */
p {
  text-align: center;
  margin-top: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Material Design ripple effect for button */
button {
  position: relative;
  overflow: hidden;
}

button:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

button:active:after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

/* Material Design floating label effect */
.form-group {
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .form-container {
    padding: 1.5rem;
    width: 90%;
  }
  h1 {
    font-size: 1.8rem;
  }
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-container {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Material Icons for future use */
.material-icons {
  vertical-align: middle;
  margin-right: 8px;
}

/* Error state */
input.error {
  border-bottom: 2px solid var(--error);
}

.error-message {
  color: var(--error);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Focus State Visual Indicator */
.focus-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

input:focus ~ .focus-indicator {
  width: 100%;
}

/* Material Design Notification Styles */
.notification {
  display: none;
  align-items: center;
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.notification.notification--visible {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.notification--error {
  border-left: 4px solid var(--error, #b00020);
}

.notification--success {
  border-left: 4px solid var(--secondary-color, #03dac6);
}

.notification__icon {
  margin-right: 1rem;
  color: var(--error, #b00020);
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification--error .notification__icon {
  color: var(--error, #b00020);
}

.notification--success .notification__icon {
  color: var(--secondary-color, #03dac6);
}

.notification__icon .material-icons {
  font-size: 1.5rem;
  margin-right: 0;
}

.notification__content {
  flex: 1;
}

.notification__message {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 400;
}

.notification__close {
  background: transparent;
  border: none;
  color: rgba(0, 0, 0, 0.54);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.notification__close:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.notification__close .material-icons {
  font-size: 1.25rem;
  margin-right: 0;
}

/* Animation for entry */
@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.notification--visible {
  animation: slideIn 0.3s forwards;
}

/* Add a subtle pulse animation to the error icon */
@keyframes pulseError {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.notification--error .notification__icon {
  animation: pulseError 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .notification {
    flex-direction: column;
    text-align: center;
  }
  .notification__icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .notification__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
  }
}
.notification-hidden {
  display: none;
}

/*# sourceMappingURL=login.css.map */
