* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


body {
  background: url('../img/backgrounds/cd.png') no-repeat center center fixed;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 10px;
}


.auth-container {
  display: flex;
  flex-direction: row;
  width: 900px;
  height: 500px;
  background-color: #ffffff;
  border: 2px solid #a1a1a1;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}


.auth-sidebar {
  width: 250px;
  background-color: #e1e1e1;
  border-right: 2px solid #a1a1a1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-sidebar h2 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.profile-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.profile-item {
  padding: 12px;
  background-color: #f9f9f9;
  border: 1px solid #d1d1d1;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  user-select: none;
}

.profile-item:hover:not(.selected) {
  background-color: #e0e0e0;
  transform: scale(1.05);
}

.profile-item.selected {
  background-color: #d40000; 
  border-color: #b20000;
}

.profile-item span {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.profile-item.selected span {
  color: white;
}


.auth-form-box {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-header {
  text-align: center;
  margin-bottom: 20px;
}

.auth-header .logo {
  height: 120px;
  margin-bottom: 10px;
}

.auth-header h1 {
  font-size: 20px;
  color: #d40000;
  font-weight: bold;
}

.auth-header p {
  font-size: 12px;
  color: #666;
}


.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.auth-form label {
  font-size: 14px;
  color: #333;
}

.auth-form input {
  padding: 10px;
  border: 1px solid #d1d1d1;
  font-size: 14px;
  outline-color: transparent;
  transition: border-color 0.3s;
}

.auth-form input:focus {
  border-color: #d40000;
}

.auth-form button {
  margin-top: 1rem;
  padding: 12px;
  background-color: #d40000;
  color: white;
  border: 1px solid #b20000;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.auth-form button:hover {
  background-color: #b20000;
  transform: scale(1.05);
}


@media (max-width: 768px) {
  .auth-container {
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .auth-sidebar {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #a1a1a1;
  }

  .auth-form-box {
    padding: 20px;
  }
}

.notification-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
}

.notification {
  padding: 12px;
  border: 1px solid #d1d1d1;
  font-size: 14px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.notification.success {
  border-color: #28a745;
  background-color: #d4edda;
  color: #155724;
}

.notification.error {
  border-color: #dc3545;
  background-color: #f8d7da;
  color: #721c24;
}

.notification.info {
  border-color: #17a2b8;
  background-color: #d1ecf1;
  color: #0c5460;
}

.notification.warning {
  border-color: #ffc107;
  background-color: #fff3cd;
  color: #856404;
}

.notification:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
}

.notification p {
  margin: 0;
}