/* Registration Page Styles */

body {
    background: #EAF6FF;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    position: fixed;
    top: 27px;
    left: 35px;
    z-index: 1000;
}

.sidebar-logo img {
    height: 39.545px;
    width: 163px;
    object-fit: contain;
}

.page-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin: 113px auto 40px;
}

.form-container {
    background: white;
    border-radius: 40px;
    box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.08);
    padding: 50px 44px;
    margin: 0 auto 50px;
    max-width: 863px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin: 0;
}

.form-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 40px;
}

.form-row {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 12px;
    min-height: 60px;
}

.form-row.gray-bg {
    background: #F5F5F5;
}

.form-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    width: 180px;
    flex-shrink: 0;
}

.form-label-with-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 180px;
    flex-shrink: 0;
}

.form-label-with-badge span:first-child {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.badge-required {
    background: #FF0004;
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 19px 0px rgba(119, 147, 65, 0.3);
    text-align: center;
    min-width: 43px;
    white-space: nowrap;
}

.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.form-input-group.vertical {
    gap: 12px;
}

.input-button-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.input-field {
    border: 1px solid #4285F4;
    border-radius: 9px;
    padding: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #808080;
    width: 197px;
}

.input-field-wide {
    border: 1px solid #4285F4;
    border-radius: 9px;
    padding: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    width: 373px;
}

.input-field-full {
    border: 1px solid #4285F4;
    border-radius: 9px;
    padding: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    width: 100%;
}

.input-field.gray-input,
.input-field-wide.gray-input {}

.input-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: .875rem;
    font-weight: 400;
    color: #000000;
    line-height: normal;
}

.btn-reflect {
    background: #01479D;
    color: white;
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 19px 0px rgba(119, 147, 65, 0.3);
    padding: 15px 0;
    width: 160px;
    height: 54px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-reflect:hover {
    background: #013a7d;
}

.name-input-group {
    display: flex;
    gap: 9px;
    align-items: center;
}

.name-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.form-check-input {
    width: 24px;
    height: 24px;
    border: 2px solid #666666;
    border-radius: 4px;
    cursor: pointer;
}

.form-check-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.3;
    cursor: pointer;
}

.form-buttons {
    display: flex;
    gap: 11px;
    align-items: center;
    justify-content: center;
}

.btn-back {
    background: #CCCCCC;
    color: white;
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 19px 0px rgba(119, 147, 65, 0.3);
    padding: 15px 0;
    width: 301px;
    height: 54px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background: #b3b3b3;
}

.btn-submit {
    background: #01479D;
    color: white;
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 19px 0px rgba(119, 147, 65, 0.3);
    padding: 15px 0;
    width: 301px;
    height: 54px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background: #013a7d;
}

/* Input focus states */
.form-control:focus {
    border-color: #4285F4;
    box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
    outline: none;
}

/* Checkbox checked state */
.form-check-input:checked {
    background-color: #0017C1;
    border-color: #0017C1;
}

