body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.container {
  padding: 20px;
  max-width: 400px;
  margin: 60px auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

input[type=text],
input[type=password],
input[type=email] {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

button {
  background-color: #04AA6D;
  color: white;
  padding: 12px;
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #039a63;
}

h1 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}

.welcome-message {
  font-size: 15px;
  color: #555;
  text-align: center;
  text-justify: inter-word;
  margin-bottom: 20px;
}

.options {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.left-link,
.right-link {
  font-size: 14px;
  text-decoration: none;
}

.left-link {
  color: #007BFF;
}

.right-link {
  color: red;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  padding-top: 60px;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  border: 1px solid #888;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  padding: 20px;
}

.close {
  position: absolute;
  right: 20px;
  top: 10px;
  color: #000;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

.animate {
  animation: animatezoom 0.4s ease-in-out;
}

@keyframes animatezoom {
  from {transform: scale(0.8)}
  to {transform: scale(1)}
}

@media screen and (max-width: 480px) {
  .container,
  .modal-content {
    width: 90%;
    padding: 15px;
  }

.options {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.options a {
  color: #007BFF;
  text-decoration: none;
  font-weight: 500;
}

.options a:hover {
  text-decoration: underline;
}


}
