
  /* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background-color: #2c3e50;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  width: 300px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 20px;
  background-color: #ecf0f1;
}

.hero img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}
.Prom-slide{
  position: relative;
  width: 100%;
  max-width: 100px;
  height: 350px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 2);
}
.Prom-slide{
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.Prom-slide.active{
  opacity: 1;
}
.Product caption{
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: rgba(red, green, blue, alpha);
  color: #fff;
  padding: 10px 15px;
  font-size: 1.2em;
  border-radius: 6px;
}
/* Form Section */
.form-section {
  padding: 30px;
  background-color: #ffffff;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
  margin-bottom: 20px;
}

form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

/* Input Fields*/
form input[type="text"],
form input[type="number"]{
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* Radio Butons*/
label{
  display: block;
  margin: 1rem;
 font-weight: bold;
}
label input[type="radio"]{
  margin-right: 0.5rem;
}

form input {
  width: 100%;
  padding: 0.75rem;
  margin-top: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

button {
  padding: 10px 15px;
  border: none;
  background-color: #3498db;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #2980b9;
}


/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

footer a {
  color: #ecf0f1;
  margin: 0 10px;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}  
/* Login Container */
.login-container {
  max-width: 400px;
  margin: 50px auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Login Heading */
.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

/* Form Group */
.form-group {
  margin-bottom: 15px;
}

/* Labels */
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Inputs */
.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Login Button */
button {
  width: 100%;
  padding: 10px;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #1a252f;
}

/* Result Message */
#result {
  margin-top: 15px;
  text-align: center;
  font-size: 1em;
  color: green;
}
