.login-page {
  background-image: url('welcomescreen.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 70px);
  padding: 20px;
}

.login-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.login-form input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.login-form button, .login-btn {
  padding: 10px;
  background-color: #007bff;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.login-form button:active,
.login-btn:active {
  background-color: #0056b3;
}

.clientportal-container {
  padding: 20px;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.days-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.day-block {
  flex: 1;
  background-color: #007bff;
  color: white;
  padding: 30px 10px;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}

.day-block:hover {
  background-color: #0056b3;
}

.upload-section {
  margin-top: 30px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.upload-section input[type="file"] {
  margin-bottom: 15px;
  width: 100%;
}

.upload-section button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.upload-section button:active {
  background-color: #0056b3;
}

.bgimg {
  background-image: url('welcomescreen.jpg');
  min-height: 100%;
  background-position: center;
  background-size: cover;
}