/* Custom styles for the login page */
body {
    background-color: #F5FFEB !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.realize-login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem;
}

.realize-logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3c9d23;
    margin-bottom: 2rem;
    text-align: center;
}

.realize-login-card {
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    background: #FFF;
}

.realize-login-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ff6600;
}

.realize-form-group {
    margin-bottom: 1rem;
}

.realize-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 2rem;
    font-size: 1rem;
}

.realize-form-control:focus {
    outline: none;
    border-color: #3c9d23;
}

.realize-checkbox-container {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.6px;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 8px;
    text-align: center;
    width: 100%;
}

.realize-remember-container label {
    margin: 0;
    text-align: center;
    flex: 1;
}

.realize-remember-container input[type="checkbox"] {
    margin: 0;
    flex: none;
}


.realize-checkbox-container input {
    margin-right: 0.5rem;
    accent-color: #ff6600;
}

.realize-checkbox-container input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #ff6600; /* Border color */
    border-radius: 3px;
    margin-right: 0.5rem;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

.realize-checkbox-container input[type="checkbox"]:checked {
    background-color: #ff6600;
    border-color: #ff6600;
}

.realize-checkbox-container input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.realize-checkbox-container input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}



.realize-btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
    position: relative;
}

.realize-btn-login:hover {
    background-color: #EF5800;
}

.realize-btn-login svg {
    position: absolute;
    right: 20px;
}

.realize-arrow-icon {
    position: absolute;
    right: 1rem;
}

.realize-forgot-password {
    text-align: center;
    margin-top: 0.5rem;
}

.realize-forgot-password a {
    text-decoration: none;
    color: #EF5800;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.6px;
}

.realize-forgot-password a:hover {
    text-decoration: underline;
}

.realize-create-account {
    color: #168352;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.6px;
}

.realize-create-account a {
    display: block;
    color: var(--green, #168352);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.6px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.realize-create-account a:hover {
    text-decoration: underline;
}

.realize-error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.success-message {
    background-color: #e8f5e9;
    color: #2e7d32;
}
