/*
    ======================================
    + Home Style CSS
    @ Team. PLAYWORLD 2025. 08. 04.
    ======================================
*/

/* PC (Default) */
/* Section 1: Contents */
.section-contents {
    width: 100%;
    min-height: 100vh;
}

.contents__form {
    width: 28.5rem;
    padding: 3.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 15%);
    background: #fff;
    border-radius: 15px;
}

.form__title-wrap {
    margin-bottom: 2.5rem;
}

.form__logo {
    width: 3.5rem;
    margin-bottom: 1rem;
}

.form__title {
    font-weight: 500;
    font-size: 1.25rem;
}

.form__input-wrap,
.form__btn-wrap {
    width: 92.5%;
}

.form__input-wrap:not(:last-child) {
    margin-bottom: 1.35rem;
}

.form__input-label {
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.form__input {
    width: calc(100% - 16px);
    height: 2.5rem;
    padding: 0 8px;
    text-align: center;
    font-size: 0.9rem;
    outline: none;
    border: 1px solid #000;
    border-radius: 15px;
}

.form__submit-btn {
    width: 100%;
    height: 2.5rem;
    font-size: 0.9rem;
    outline: none;
    border: none;
    border-radius: 15px;
    background: var(--default-blue);
    color: #fff;
    cursor: pointer;
    transition: all 0.5s;
}

.form__submit-btn:hover {
    background: var(--default-blue-hover);
}
/* // Section 1: Contents */
/* // PC (Default) */

/* Mobile */
@media (min-width: 320px) and (max-width: 480px) {
    /* Section 1: Contents */
    .contents__form {
        width: 75%;
        padding: 12.5% 6.5%;
    }

    .form__logo {
        width: 2.85rem;
    }

    .form__title {
        text-align: center;
        font-size: 1.085rem;
    }

    .form__title-wrap {
        margin-bottom: 1.5rem;
    }

    .form__input-label {
        font-size: 0.95rem;
    }
    /* // Section 1: Contents */
}
/* // Mobile */