.oauth-btn {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    font-weight: 500;
    transition: background-color 0.2s ease;
    min-width: 220px;
    justify-content: center;
}

.oauth-btn img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.oauth-btn:hover {
    background-color: #f8f9fa;
}

.oauth-btn.kakao {
    border-color: #fae100;
}

.oauth-btn.google {
    border-color: #ccc;
}

.oauth-btn-wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}
/* 구글 로그인 버튼 스타일 */
.btn-google {
    background-color: #ffffff;
    color: #757575;
    border: 1px solid #dadce0;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.btn-google:hover {
    background-color: #f8f9fa;
    color: #757575;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(60,64,67,0.3);
}
.google-icon {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}
