/* public/style.css */

body {
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(to right, #f9f9f9, #e9f0ff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 40px;
    color: #333;
}

h1, h2 {
    color: #1f3f80;
    margin-bottom: 1rem;
}

button {
    font-size: 1rem;
    padding: 1rem 2.5rem;
    margin: 1rem 0.5rem;
    border: none;
    border-radius: 8px;
    background-color: #1f3f80;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

button:hover {
    background-color: #3c5cbf;
    transform: translateY(-2px);
}

pre {
    background: #f4f4f4;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: left;
    max-width: 800px;
    overflow-x: auto;
    margin-top: 1rem;
}

/* ==== Google OAuth 전용 스타일 ==== */
.google-auth-body {
    font-family: "Segoe UI", sans-serif;
    background-color: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.google-auth-container {
    text-align: center;
    padding: 3rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 480px;
    width: 100%;
}

.google-auth-logo {
    width: 140px;
    margin-bottom: 1.5rem;
}

.google-auth-title {
    font-size: 1.4rem;
    color: #1f3f80;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.google-auth-desc {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.google-auth-desc a {
    color: #1a4fb5;
    text-decoration: none;
    font-weight: 600;
}

.google-auth-button {
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    background-color: #1f3f80;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

.google-auth-button:hover {
    background-color: #3c5cbf;
    transform: translateY(-2px);
}

/* ==== Shopee OAuth 전용 스타일 ==== */
.shopee-auth-body {
    font-family: "Segoe UI", sans-serif;
    background-color: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.shopee-auth-container {
    text-align: center;
    padding: 3rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 480px;
    width: 100%;
}

.shopee-auth-logo {
    width: 140px;
    margin-bottom: 1.5rem;
}

.shopee-auth-title {
    font-size: 1.4rem;
    color: #1f3f80;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.shopee-auth-desc {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.shopee-auth-desc a {
    color: #1a4fb5;
    text-decoration: none;
    font-weight: 600;
}

.shopee-auth-button {
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    background-color: #1a4fb5; /* Shopee 브랜드 레드 계열 */
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

.shopee-auth-button:hover {
    background-color: #3c5cbf;
    transform: translateY(-2px);
}

.button-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.button-link {
    display: inline-block;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    background-color: #1f3f80;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.button-link:hover {
    background-color: #3c5cbf;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* ==== Index (서비스 선택) 전용 스타일 ==== */
.index-auth-body {
    font-family: "Segoe UI", sans-serif;
    background-color: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.index-auth-container {
    text-align: center;
    padding: 3rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 480px;
    width: 100%;
}

.index-auth-logo {
    width: 140px;
    margin-bottom: 1.5rem;
}

.index-auth-title {
    font-size: 1.4rem;
    color: #1f3f80;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.index-auth-desc {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.index-auth-desc a {
    color: #1a4fb5;
    text-decoration: none;
    font-weight: 600;
}

.index-button-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.button-link {
    display: inline-block;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    background-color: #1f3f80;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.button-link:hover {
    background-color: #3c5cbf;
    transform: translateY(-2px);
}
