/* 인증 페이지 */
.auth-container {
    width: 100%;
    max-width: 1100px;
    min-height: 620px;
    margin: 40px auto 60px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.auth-box {
    width: 420px;
    max-width: 100%;
    padding: 36px 34px;
    background-color: #ffffff;
    border: 1px solid #e2e5ea;
    border-radius: 12px;
}

.auth-box h2 {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.auth-desc {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 28px;
}

.auth-form {
    width: 100%;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.form-group input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #d5d9e0;
    border-radius: 7px;
    font-size: 14px;
    outline: none;
}

.form-group input:focus {
    border-color: #2f6fed;
}

.auth-submit {
    width: 100%;
    height: 46px;
    margin-top: 8px;
    border: none;
    border-radius: 7px;
    background-color: #2f6fed;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.auth-submit:hover {
    background-color: #1f5bd8;
}

.auth-link {
    margin-top: 22px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.auth-link a {
    color: #2f6fed;
    font-weight: 700;
}

.error-message {
    margin-bottom: 16px;
    padding: 10px 12px;
    border-radius: 6px;
    background-color: #fff1f1;
    color: #d93025;
    font-size: 14px;
}

.success-message {
    margin-bottom: 16px;
    padding: 10px 12px;
    border-radius: 6px;
    background-color: #f0f7ff;
    color: #2f6fed;
    font-size: 14px;
}

@media (max-width: 768px) {
    .auth-container {
        min-height: auto;
        margin: 24px auto 40px;
        padding: 0 14px;
    }

    .auth-box {
        padding: 28px 22px;
    }

    .auth-box h2 {
        font-size: 23px;
    }
}