body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url(./img/ve-watercol-01.jpg);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}


.two-column-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; /* Space between columns */
  margin: 1rem 0;
  align-items: center;
    justify-content: center;
      width: 100%;


}

.column {
  flex: 1;
  min-width: 350px; /* Minimum width before stacking */
  width:100%;
  padding: 1rem;
  box-sizing: border-box;
align-items: center;
    justify-content: center;
      place-items: center; /* both axes */


}





.login-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    align-items: center;
    justify-content: center;
    opacity: 0.7; 
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}

input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.login-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.login-btn:hover {
    background-color: #3367d6;
}

.error-message {
    color: #d32f2f;
    background-color: #fde0e0;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
}