/* app.css */

/* Custom styles for the Inter font and rounded corners */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ecf6fa; /* Light blue background as per image */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.form-container {
    padding: 2.5rem;
    border-radius: 0.75rem; /* Rounded corners */
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.form-input {
    border-radius: 0.0rem; /* Slightly rounded for inputs */
    border: 1px solid #d1d5db;
    padding: 0.5rem 0.5rem;
    width: 100%;
    box-sizing: border-box; /* Include padding in width */
}

/* ログインボタンのスタイル */
.form-button {
    border-radius: 2.0rem; /* Rounded corners for button */
    background-color: #203a72; /* Blue button as per image */
    color: #fff;
    padding: 0.75rem 1.5rem;
    width: 40%;
    margin: 0 auto; /* 中央寄せにする */
    display: block; /* margin: auto を適用するためにブロック要素にする */
    cursor: pointer;
    transition: background-color 0.2s;
}

.form-button:hover {
    background-color: #1d4ed8;
}
