@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

/* Base styles */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #eef2f7;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 8px 8px 15px #d1d9e6, -8px -8px 15px #ffffff;
    width: 95%;
    max-width: 600px;
    margin: 20px auto;
}

h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    color: #666;
    margin-bottom: 1.5rem;
}

input[type="text"],
input[type="password"],
input[type="submit"],
select {
    width: calc(100% - 24px);
    padding: 12px;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

input[type="submit"] {
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

a {
    color: #007bff;
    text-decoration: none;
    margin-top: 2rem;
    display: inline-block;
}

a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    .container {
        width: 90%;
        padding: 1.5rem;
        margin: 10px auto;
    }

    h1 {
        font-size: 1.5rem;
    }
}
/* Button Styles */
input[type="submit"], .button, a.button {
  display: inline-block;
  padding: 15px 30px;
  margin-bottom: 10px; /* Space between buttons */
  border: none;
  border-radius: 30px; /* Rounded corners for a modern look */
  background: #007bff; /* Primary button color */
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  vertical-align: middle;
  line-height: normal; /* Reset line-height to avoid issues with padding */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

input[type="submit"]:hover, .button:hover, a.button:hover {
  background-color: #0056b3; /* Slightly darker on hover for feedback */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15); /* Larger shadow on hover for 'lifting' effect */
  transform: translateY(-2px); /* Lift the button up to indicate it's clickable */
}

a.button { /* Specific styles for anchor that acts like a button */
  display: block;
  width: auto; /* Adjust width as necessary */
  text-align: center;
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 600px) {
  input[type="submit"], .button, a.button {
      padding: 12px 25px; /* Slightly smaller padding on small devices */
      font-size: 0.9rem; /* Slightly smaller font size on small devices */
  }
}

/* Adjustments for larger screens */
@media screen and (min-width: 1024px) {
  input[type="submit"], .button, a.button {
      padding: 18px 35px; /* Larger padding on big screens for better interaction */
      font-size: 1.1rem; /* Larger font size for readability */
  }
}