html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body {
    background-color: #f0fae8; /* Light mint green background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
}

.site-title {
    color: #2e8b2e; /* Green text color */
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.reset-form-container {
    background-color: #ffffff; /* White card */
    border-radius: 20px;
    width: 100%;
    max-width: 460px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reset-form-title {
    text-align: center;
    color: #EF5800;
    font-family: "Noto Sans JP";
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 44.959px; /* 172.918% */
    letter-spacing: 0.26px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    border: 1px solid #ddd;
    font-size: 14px;
    box-sizing: border-box;
    border-radius: 50px;
    border: 1px solid rgba(217, 217, 217, 0.50);
    background: var(--Neutral-1, #FFF);
    display: flex;
    padding: 15px 20px;
    align-items: flex-start;
    align-self: stretch;
}

.submit-button {
    width: 100%;
    background-color: #EF5800;
    border: none;
    border-radius: 50px;
    padding: 14px 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    color: var(--white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.9px;
}

.arrow-icon {
    display: inline-block;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    position: relative;
}

.arrow-icon::after {
    content: "→";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #EF5800;
    font-size: 14px;
}

.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.error-message {
    background-color: #ffebee;
    color: #c62828;
}

.success-message {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.password-reset-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.submit-button svg {
    position: absolute;
    right: 20px;
}
