/* ===================================================================================
//
//                        Authentication & Room Selection Styles
//
// =================================================================================== */

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-image: url('https://images.unsplash.com/photo-1579546929518-9e396f3cc809');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  direction: rtl;
}

.auth-container {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  color: #333;
}

/* Form Styles */
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 16px;
}

button {
  width: 100%;
  background-color: #007bff;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
}

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

/* Room List Styles */
.room-list {
  margin-top: 20px;
}

.room-card {
  display: block;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
  transition: transform 0.2s, box-shadow 0.2s;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.room-card h3 {
  margin: 0 0 5px 0;
}

.room-card p {
  margin: 0;
  color: #666;
}
