
.header {
    background: url("/api/v1/static/Voiceek_logo.png") no-repeat center;
    background-size: contain;
    width: 100%;
    height: 40px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.login-container {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    width: 300px;
}

.input-container {
    margin-bottom: 20px;
    margin-right: 20px;
}

.input-container label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.input-container input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.input-container input::placeholder {
  color: #B4B4B4;
  font-size: 14px;
}

.action-button {
    background: #568BC9;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.action-button:hover {
  background: #4679A7;
}

.action-button:disabled {
    background-color: grey;
    cursor: not-allowed;
}

.message-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 11px;
    color: #007bff;
    text-decoration: none;
}

.message-link:hover {
    text-decoration: underline;
}

.error-message {
    color: red;
    margin-top: 10px;
    display: none;
    font-size: 14px;
}

.error-message ul {
  margin: 0;
  padding-left: 20px;
}

.log-message {
  color: gray;
  text-align: center;
  margin-top: 10px;
  display: none;
}

.reset-password-lead-sentence {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.reset-password-detail-sentence {
    font-size: 12px;
    color:gray;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f7f7f7;
}
