/* General Reset */
body, h1, h2, h3, p, div, input, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #1e1e2f;
  color: #eaeaea;
  line-height: 1.6;
}

/* Container Styles */
.container, .dashboard {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  background: linear-gradient(145deg, #3c3c54, #2b2b42);
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), 0 -2px 4px rgba(255, 255, 255, 0.1);
  text-align: center;
}

.container h1, .container h2, .dashboard header {
  color: #a970ff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Input Fields */
input[type="email"], 
input[type="password"], 
input[type="text"], 
input[type="tel"] {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #6a5acd;
  border-radius: 8px;
  background-color: #2e2e47;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

input:focus {
  border-color: #a970ff;
  outline: none;
  box-shadow: 0 0 8px #a970ff;
}

/* Buttons */
button {
  width: 100%;
  background: linear-gradient(145deg, #7e57c2, #5e35b1);
  color: #fff;
  border: none;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

button:hover {
  background: linear-gradient(145deg, #9575cd, #7e57c2);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* Dashboard Header */
header {
  background: linear-gradient(145deg, #7e57c2, #5e35b1);
  color: white;
  padding: 15px;
  border-radius: 12px 12px 0 0;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

header h2 {
  font-size: 22px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

header span {
  font-weight: bold;
  color: #ffb74d;
}

/* Submenu Section */
.submenu {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.submenu button {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  font-size: 14px;
  background: #3e3e5a;
  border: none;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}

.submenu button:hover {
  background: #5e35b1;
  color: #ffb74d;
  transform: translateY(-2px);
}

/* Main Section */
section {
  margin: 20px 0;
}

section h1 {
  font-size: 22px;
  color: #a970ff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

section p {
  font-size: 16px;
  color: #c7c7dd;
  margin-top: 10px;
}

/* Footer Section */
footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

footer button {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  font-size: 14px;
  background: #3e3e5a;
  border: none;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}

footer button:hover {
  background: #5e35b1;
  color: #ffb74d;
  transform: translateY(-2px);
  }
