main {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: space-between; /* Align form and order summary */
  padding: 20px;
  margin: auto; /* Center content on the page */
}

.signup-box {
  width: 65%; /* Adjust width for the form */
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center;

}

.signup-box h2 {
  margin-bottom: 20px;
}

.signup-box label {
  display: block;
  margin-bottom: 5px;
  text-align: left;
}

.signup-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.password-box {
  position: relative;
  display: flex;
  align-items: center;
}

.password-box button {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.password-box button i {
  font-size: 14px;
  color: #666;
}

.password-box button:hover i {
  color: #333;
}

.password-box input {
  width:100%; /* Ensure enough space for button */
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #333;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

button:hover {
  background-color: #555;
}



p {
  margin-top: 10px;
}

p a {
  color: blue;
  text-decoration: none;
}

p a:hover {
  text-decoration: underline;
}
.order-summary {
    width: 100%;
    float: right;
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border: 3px solid black;
    border-radius: 5px;
}

.order-summary h3 {
    margin-bottom: 20px;
}

.order-summary table {
    width: 100%;
    margin-bottom: 20px;
}

.order-summary table th,
.order-summary table td {
    text-align: left;
    padding: 10px 0;
}

.order-summary table th {
    border-bottom: 1px solid #ddd;
}

.order-summary button {
    background-color: #333;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.order-summary button:hover {
    background-color: #555;
}
