/* css/style.css */

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  height: 100%;
}

.splash-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(to right, #2980b9, #6dd5fa);
  color: white;
  text-align: center;
}

.splash-screen {
  animation: fadeIn 0.5s ease-in-out;
}

.splash-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* Login/Register UI */
.auth-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f0f2f5;
}

.auth-container {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 10px;
}

.auth-tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  background: #e0e0e0;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.tab.active {
  background: #3498db;
  color: white;
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
}

form input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  width: 100%;
  padding: 10px;
  background: #3498db;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

