.login-form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: whitesmoke;
}
@media screen and (max-width: 400px) {
  .login-form {
    padding: 0 10px;
  }
}
.login-form .login-form-area {
  box-sizing: border-box;
  width: 100%;
  max-width: 650px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: white;
}
.login-form .login-form-area h2 {
  font-size: 1.2rem;
  text-align: center;
}
.login-form .login-form-area .login-mailaddress,
.login-form .login-form-area .login-password {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1rem;
  text-align: center;
}
.login-form .login-form-area .login-mailaddress label,
.login-form .login-form-area .login-password label {
  display: inline-block;
  width: 11em;
  text-align: right;
}
.login-form .login-form-area .login-mailaddress input,
.login-form .login-form-area .login-password input {
  width: calc(100% - 12em);
  padding: 8px;
  margin-left: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.login-form .login-form-area .login-mailaddress input:focus,
.login-form .login-form-area .login-password input:focus {
  border-color: #4CAF50;
  outline: none;
}
@media screen and (max-width: 400px) {
  .login-form .login-form-area .login-mailaddress label,
  .login-form .login-form-area .login-password label {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
  .login-form .login-form-area .login-mailaddress input,
  .login-form .login-form-area .login-password input {
    width: 100%;
    margin-left: 0;
  }
}
.login-form .login-form-area .login-button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}
.login-form .login-form-area .login-button:hover {
  background-color: #45a049;
}
.login-form .login-form-area .password-reset-info {
  font-size: 0.875rem;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}

.login-footer {
  position: absolute;
  bottom: 5px;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  color: #888;
}
.login-footer p {
  margin: 0;
  padding: 0;
}

.user-info-area .user-info-table {
  width: 100%;
}
.user-info-area .user-info-table th, .user-info-area .user-info-table td {
  padding: 5px 10px;
  border-bottom: 1px dotted #ddd;
  text-align: left;
}
.user-info-area .user-info-table th {
  width: 150px;
}
.user-info-area .user-info-table tr:last-child th, .user-info-area .user-info-table tr:last-child td {
  border-bottom: none;
}
.user-info-area .user-info-setting {
  margin: 0;
  padding: 0;
  text-align: right;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-list .news-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.news-list .news-item:last-child {
  border-bottom: none;
}
.news-list .news-item .news-date {
  font-size: 0.875rem;
  color: #888;
  margin-right: 10px;
}
.news-list .news-item .news-title {
  font-size: 1rem;
  font-weight: bold;
}

.event-reserved-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.event-reserved-list .event-reserved-item {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ddd;
}
.event-reserved-list .event-reserved-item:last-child {
  border-bottom: none;
}
.event-reserved-list .event-reserved-item .event-reserved-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.event-reserved-list .event-reserved-item .event-reserved-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}
.event-reserved-list .event-reserved-item .event-reserved-description {
  padding: 5px;
  font-size: 1rem;
  color: #333;
}
.event-reserved-list .event-reserved-item .event-reserved-subtitle {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
}

.event-section {
  margin-top: 20px;
}
.event-section .event-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.event-section .event-list .event-item {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ddd;
}
.event-section .event-list .event-item:last-child {
  border-bottom: none;
}
.event-section .event-list .event-item .event-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.event-section .event-list .event-item .event-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}
.event-section .event-list .event-item .event-description {
  padding: 5px;
  font-size: 1rem;
  color: #333;
}/*# sourceMappingURL=page.css.map */