@charset "UTF-8";

/* base.css上書き */
:root{
    --footer-height : 0px;
}
/* base.css上書き終了 */

h1 {
    margin-bottom: 24px;
    text-align: center;
    font-size: 28px;
}

button {
    margin: 0 auto;
    margin-top: 24px;
    display: block;
    padding: 8px 16px;
    min-width: 172px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background-color: var(--theme-color-1);
    border: none;
    border-radius: 10px;
}

.alert {
    margin: 8px 0;
    padding: 8px;
    font-size: 14px;
    font-weight: bold;
    background-color: var(--theme-color-2);
    border-radius: 5px;   
    z-index: 1;
}

.alert::before {
    margin-right: 4px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    content: "\f071";
    color: var(--alert);
}

.inner-content {
    padding: 16px;
    background-color: var(--theme-color-3);
    height: 100%;
    border-radius: 10px;
}

.errorlist {
    margin: 8px 0;
    padding: 8px;
    font-size: 12px;
    font-weight: bold;
    background-color: var(--theme-color-2);
    list-style: none;
    border-radius: 5px;
}

.errorlist li + li {
    margin-top: 8px;
}

.errorlist li::before {
    margin-right: 6px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    content: "\f071";
    color: var(--error);
}


.field {
    margin-bottom: 8px;
}

.field label {
    margin-bottom: 4px;
    display: block;
    font-size: 16px;
}

.field input {
    padding: 4px;
    width: 100%;
    font-size: 16px;
}

.field input::placeholder {
    font-size: 16px;
}


.sub-text {
    margin-top: 16px;
    padding: 8px;
    font-size: 12px;
    background-color: var(--theme-color-2);
    border-radius: 5px;
}