/* ページ全体 */
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
    background: #e1f7e1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 中央寄せのメイン部分 */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* navの高さ分余白 */
}

/* フッター */
footer {
    text-align: center;
    padding: 1rem 0;
}

/* アイコン周り */
.image_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
}

.image_wrapper .material-symbols-outlined {
    font-size: 32px !important; /* アイコン大きさ */
    color: white !important;    /* アイコン色 */
    position: relative;
    z-index: 2;
}

.circle {
    background-color: #66CC66;  /* 緑丸 */
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* タイトル */
.title h1 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.title p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* フォームの枠 */
.applicant_form_container {
    background: white;
    width: 28rem;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
}

/* フォーム全体 */
.form_card {
    width: 100%;
}

/* フォームタイトル */
.form_title h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* 入力欄 */
.card_item {
    text-align: left;
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

/* 入力ボックス */
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    outline: none;
    transition: border 0.2s;
}

input:focus {
    border-color: #2563eb;
}

/* ボタン */
.start_button {
    margin-top: 20px;
    background-color: #66CC66; /* ← 緑に変更 */
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.start_button:hover {
    background-color: #57b557;
}

/* 戻るリンク */
.back {
    text-align: center;
    padding-top: 10px;
}

.back a {
    color: #545E6C;
    text-decoration: none;
}

.back a:hover {
    text-decoration: underline;
}

/* エラーメッセージ */
.alert.alert-danger {
    color: red;
    font-size: 12px;
}
