@charset "utf-8";
/*
Site Name:
File Name: login.css
Description: ログイン画面CSS
Created: 2016/07/13
Last update: 2026/02/04
*/
div.ikou_Medy {
    clear: both;
    width: 540px; height: 78px;
    border-radius: 5px;
    border-width: 0;
}
input.ikou_Medy {
    width: 540px; height: 78px;
    text-align: left;
    border-radius: 5px;
    background: url(/resources/images/login/old_medy.png) no-repeat;
    background-size: 15%;
    background-position: top 12px left 10px;
    cursor: pointer;
    border-width: 3px;
    border-color: #65A33E;
    box-shadow: 5px 5px 5px #ccc;
    color: #314D20;
    background-color: white;
    white-space: pre-line;
    word-break: break-all;
    font-size: 16.5px;
    font-family: "Noto Sans JP", "Inter", sans-serif;
}
input:hover.ikou_Medy {
    opacity: 0.8;
}
_::-webkit-full-page-media, _:future, :root input.ikou_Medy {
    border-color: #01581A;
}
_::-webkit-full-page-media, _:future, :root input:hover.ikou_Medy {
    opacity: 0.8;
}
.main-contents {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.ceanter-line {
    width: 576px;
    position: relative;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    line-height: 20px;
}
.ceanter-line::before,
.ceanter-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: var(--border);
}
.ceanter-line::before {
  left: 0;
}
.ceanter-line::after {
  right: 0;
}
.center-line span {
    background: #fff;
    padding: 0 12px;
}
.pre-entry-label {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.44px;
}
.btn {
  width: 576px;
  height: 56px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
}
.btn.primary {
  background: var(--green);
  color: #fff;
}
.btn.primary:hover {
  background: var(--green-hover);
}
#contents {
    padding: 0 !important;
}